diff options
author | obscuren <geffobscura@gmail.com> | 2014-12-19 07:19:02 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-12-19 07:19:02 +0800 |
commit | 6e24b1587de95b45fe0d7623528bb2f5a48e9823 (patch) | |
tree | cfbc3922dec2bb088f3d85dd9f2a735a250264d1 /core/execution.go | |
parent | 22d29a6d52ade3ebcd4ecb341e3f5eafddb8e17b (diff) | |
parent | 59ef6e36931c980ba15babfb3680514635faebf6 (diff) | |
download | go-tangerine-6e24b1587de95b45fe0d7623528bb2f5a48e9823.tar go-tangerine-6e24b1587de95b45fe0d7623528bb2f5a48e9823.tar.gz go-tangerine-6e24b1587de95b45fe0d7623528bb2f5a48e9823.tar.bz2 go-tangerine-6e24b1587de95b45fe0d7623528bb2f5a48e9823.tar.lz go-tangerine-6e24b1587de95b45fe0d7623528bb2f5a48e9823.tar.xz go-tangerine-6e24b1587de95b45fe0d7623528bb2f5a48e9823.tar.zst go-tangerine-6e24b1587de95b45fe0d7623528bb2f5a48e9823.zip |
Merge branch 'develop' into poc8
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 { |