diff options
Diffstat (limited to 'ethvm/vm.go')
-rw-r--r-- | ethvm/vm.go | 4 |
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() |