aboutsummaryrefslogtreecommitdiffstats
path: root/xeth
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-12-19 07:18:52 +0800
committerobscuren <geffobscura@gmail.com>2014-12-19 07:18:52 +0800
commit59ef6e36931c980ba15babfb3680514635faebf6 (patch)
tree4c0b9b36a6419eb790171c82b86b19ecc1192d01 /xeth
parenta7f4ade7114ee962110cb7c140e7ce7bd3f6664f (diff)
downloadgo-tangerine-59ef6e36931c980ba15babfb3680514635faebf6.tar
go-tangerine-59ef6e36931c980ba15babfb3680514635faebf6.tar.gz
go-tangerine-59ef6e36931c980ba15babfb3680514635faebf6.tar.bz2
go-tangerine-59ef6e36931c980ba15babfb3680514635faebf6.tar.lz
go-tangerine-59ef6e36931c980ba15babfb3680514635faebf6.tar.xz
go-tangerine-59ef6e36931c980ba15babfb3680514635faebf6.tar.zst
go-tangerine-59ef6e36931c980ba15babfb3680514635faebf6.zip
Cleaned up objects
Diffstat (limited to 'xeth')
-rw-r--r--xeth/vm_env.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/xeth/vm_env.go b/xeth/vm_env.go
index ce53e9a30..7fb674a94 100644
--- a/xeth/vm_env.go
+++ b/xeth/vm_env.go
@@ -47,9 +47,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(me vm.ClosureRef, addr, data []byte, gas, price, value *big.Int) ([]byte, error) {