aboutsummaryrefslogtreecommitdiffstats
path: root/ethvm/vm.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-08-22 02:25:02 +0800
committerobscuren <geffobscura@gmail.com>2014-08-22 02:25:02 +0800
commitd03ab3c97652d61a9f179215f31e107c91bd6058 (patch)
tree12cf90bbe2fc7cf996b208c0bce183193cf6872f /ethvm/vm.go
parent5196f9a340d3e867bbff2e317a3c0697377da1cf (diff)
downloaddexon-d03ab3c97652d61a9f179215f31e107c91bd6058.tar
dexon-d03ab3c97652d61a9f179215f31e107c91bd6058.tar.gz
dexon-d03ab3c97652d61a9f179215f31e107c91bd6058.tar.bz2
dexon-d03ab3c97652d61a9f179215f31e107c91bd6058.tar.lz
dexon-d03ab3c97652d61a9f179215f31e107c91bd6058.tar.xz
dexon-d03ab3c97652d61a9f179215f31e107c91bd6058.tar.zst
dexon-d03ab3c97652d61a9f179215f31e107c91bd6058.zip
invalidated SWAP/DUP
Diffstat (limited to 'ethvm/vm.go')
-rw-r--r--ethvm/vm.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/ethvm/vm.go b/ethvm/vm.go
index 29dc2515c..873a80c44 100644
--- a/ethvm/vm.go
+++ b/ethvm/vm.go
@@ -640,10 +640,6 @@ func (self *Vm) RunClosure(closure *Closure) (ret []byte, err error) {
x, y := stack.Swapn(n)
self.Printf(" => [%d] %x [0] %x", n, x.Bytes(), y.Bytes())
- case DUP:
- // NOP
- case SWAP:
- // NOP
case MLOAD:
require(1)
offset := stack.Pop()