aboutsummaryrefslogtreecommitdiffstats
path: root/vm/vm_jit.go
diff options
context:
space:
mode:
Diffstat (limited to 'vm/vm_jit.go')
-rw-r--r--vm/vm_jit.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/vm/vm_jit.go b/vm/vm_jit.go
index c715abab0..1cb9652af 100644
--- a/vm/vm_jit.go
+++ b/vm/vm_jit.go
@@ -3,12 +3,12 @@ package vm
import "math/big"
type JitVm struct {
- env Environment
- backup *DebugVm
+ env Environment
+ backup *Vm
}
func NewJitVm(env Environment) *JitVm {
- backupVm := NewDebugVm(env)
+ backupVm := NewVm(env)
return &JitVm{env: env, backup: backupVm}
}
@@ -28,4 +28,4 @@ func (self *JitVm) Env() Environment {
return self.env
}
-//go is nice \ No newline at end of file
+//go is nice