aboutsummaryrefslogtreecommitdiffstats
path: root/core/execution.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-02-01 22:30:29 +0800
committerobscuren <geffobscura@gmail.com>2015-02-01 22:30:29 +0800
commit8ccde784f9035c0a7a8f234994538c817c5b9de7 (patch)
tree6fc252d3372510abda8fd16297caca481b5beeae /core/execution.go
parentd52878c744fd7acce727feb41c2d4296e56826d3 (diff)
downloaddexon-8ccde784f9035c0a7a8f234994538c817c5b9de7.tar
dexon-8ccde784f9035c0a7a8f234994538c817c5b9de7.tar.gz
dexon-8ccde784f9035c0a7a8f234994538c817c5b9de7.tar.bz2
dexon-8ccde784f9035c0a7a8f234994538c817c5b9de7.tar.lz
dexon-8ccde784f9035c0a7a8f234994538c817c5b9de7.tar.xz
dexon-8ccde784f9035c0a7a8f234994538c817c5b9de7.tar.zst
dexon-8ccde784f9035c0a7a8f234994538c817c5b9de7.zip
Added (disabled) Jit validation
Diffstat (limited to 'core/execution.go')
-rw-r--r--core/execution.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/core/execution.go b/core/execution.go
index cad4e84aa..5e0cbd37e 100644
--- a/core/execution.go
+++ b/core/execution.go
@@ -33,8 +33,7 @@ func (self *Execution) Call(codeAddr []byte, caller vm.ContextRef) ([]byte, erro
func (self *Execution) exec(code, contextAddr []byte, caller vm.ContextRef) (ret []byte, err error) {
env := self.env
- evm := vm.New(env)
-
+ evm := vm.NewVm(env)
if env.Depth() == vm.MaxCallDepth {
caller.ReturnGas(self.Gas, self.price)