diff options
author | obscuren <geffobscura@gmail.com> | 2014-12-19 07:18:52 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-12-19 07:18:52 +0800 |
commit | 59ef6e36931c980ba15babfb3680514635faebf6 (patch) | |
tree | 4c0b9b36a6419eb790171c82b86b19ecc1192d01 /core/execution.go | |
parent | a7f4ade7114ee962110cb7c140e7ce7bd3f6664f (diff) | |
download | go-tangerine-59ef6e36931c980ba15babfb3680514635faebf6.tar.gz go-tangerine-59ef6e36931c980ba15babfb3680514635faebf6.tar.zst go-tangerine-59ef6e36931c980ba15babfb3680514635faebf6.zip |
Cleaned up objects
Diffstat (limited to 'core/execution.go')
-rw-r--r-- | core/execution.go | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/core/execution.go b/core/execution.go index 827e1ee0e..cd98746c4 100644 --- a/core/execution.go +++ b/core/execution.go @@ -16,8 +16,10 @@ type Execution struct { SkipTransfer bool } -func NewExecution(vm vm.VirtualMachine, address, input []byte, gas, gasPrice, value *big.Int) *Execution { - return &Execution{vm: vm, address: address, input: input, Gas: gas, price: gasPrice, value: value} +func NewExecution(env vm.Environment, address, input []byte, gas, gasPrice, value *big.Int) *Execution { + evm := vm.New(env, vm.DebugVmTy) + + return &Execution{vm: evm, address: address, input: input, Gas: gas, price: gasPrice, value: value} } func (self *Execution) Addr() []byte { |