aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-12-21 22:13:45 +0800
committerobscuren <geffobscura@gmail.com>2014-12-21 22:13:45 +0800
commit25d16f358ab5778ea04b23f60083b5a5325621c9 (patch)
treec2c27602b83ee3364cd6eb28cf462cb20c868c53
parent3983dd2428137211f84f299f9ce8690c22f50afd (diff)
parent795b14330ad4399ef292835eac452d258dcd7464 (diff)
downloadgo-tangerine-25d16f358ab5778ea04b23f60083b5a5325621c9.tar.gz
go-tangerine-25d16f358ab5778ea04b23f60083b5a5325621c9.tar.zst
go-tangerine-25d16f358ab5778ea04b23f60083b5a5325621c9.zip
Merge branch 'develop'
-rw-r--r--cmd/evm/main.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/cmd/evm/main.go b/cmd/evm/main.go
index c6c986a04..2bdfdfa9f 100644
--- a/cmd/evm/main.go
+++ b/cmd/evm/main.go
@@ -141,9 +141,7 @@ func (self *VMEnv) Transfer(from, to vm.Account, amount *big.Int) error {
}
func (self *VMEnv) vm(addr, data []byte, gas, price, value *big.Int) *core.Execution {
- evm := vm.New(self, vm.DebugVmTy)
-
- return core.NewExecution(evm, addr, data, gas, price, value)
+ return core.NewExecution(self, addr, data, gas, price, value)
}
func (self *VMEnv) Call(caller vm.ClosureRef, addr, data []byte, gas, price, value *big.Int) ([]byte, error) {