aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-12-19 07:19:02 +0800
committerobscuren <geffobscura@gmail.com>2014-12-19 07:19:02 +0800
commit6e24b1587de95b45fe0d7623528bb2f5a48e9823 (patch)
treecfbc3922dec2bb088f3d85dd9f2a735a250264d1 /core
parent22d29a6d52ade3ebcd4ecb341e3f5eafddb8e17b (diff)
parent59ef6e36931c980ba15babfb3680514635faebf6 (diff)
downloadgo-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')
-rw-r--r--core/execution.go6
-rw-r--r--core/vm_env.go4
2 files changed, 5 insertions, 5 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 {
diff --git a/core/vm_env.go b/core/vm_env.go
index 0b6744972..ad63ecf9c 100644
--- a/core/vm_env.go
+++ b/core/vm_env.go
@@ -43,9 +43,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) *Execution {
- evm := vm.New(self, vm.DebugVmTy)
-
- return NewExecution(evm, addr, data, gas, price, value)
+ return NewExecution(self, addr, data, gas, price, value)
}
func (self *VMEnv) Call(me vm.ClosureRef, addr, data []byte, gas, price, value *big.Int) ([]byte, error) {