aboutsummaryrefslogtreecommitdiffstats
path: root/core/vm/interpreter.go
diff options
context:
space:
mode:
authorhydai <z54981220@gmail.com>2018-03-26 18:48:04 +0800
committerPéter Szilágyi <peterke@gmail.com>2018-03-26 18:48:04 +0800
commit84c5db5409cebf97276ab90db38ed73c21cf82ef (patch)
treead304e3144ad8cf1c13152e0623edda25563889c /core/vm/interpreter.go
parent23ac78333201890deed23576668810e19df2c67e (diff)
downloaddexon-84c5db5409cebf97276ab90db38ed73c21cf82ef.tar
dexon-84c5db5409cebf97276ab90db38ed73c21cf82ef.tar.gz
dexon-84c5db5409cebf97276ab90db38ed73c21cf82ef.tar.bz2
dexon-84c5db5409cebf97276ab90db38ed73c21cf82ef.tar.lz
dexon-84c5db5409cebf97276ab90db38ed73c21cf82ef.tar.xz
dexon-84c5db5409cebf97276ab90db38ed73c21cf82ef.tar.zst
dexon-84c5db5409cebf97276ab90db38ed73c21cf82ef.zip
core/vm: remove JIT VM codes (#16362)
Diffstat (limited to 'core/vm/interpreter.go')
-rw-r--r--core/vm/interpreter.go6
1 files changed, 1 insertions, 5 deletions
diff --git a/core/vm/interpreter.go b/core/vm/interpreter.go
index 95490adfc..47d5e7f2f 100644
--- a/core/vm/interpreter.go
+++ b/core/vm/interpreter.go
@@ -28,10 +28,6 @@ import (
type Config struct {
// Debug enabled debugging Interpreter options
Debug bool
- // EnableJit enabled the JIT VM
- EnableJit bool
- // ForceJit forces the JIT VM
- ForceJit bool
// Tracer is the op code logger
Tracer Tracer
// NoRecursion disabled Interpreter call, callcode,
@@ -47,7 +43,7 @@ type Config struct {
// Interpreter is used to run Ethereum based contracts and will utilise the
// passed evmironment to query external sources for state information.
-// The Interpreter will run the byte code VM or JIT VM based on the passed
+// The Interpreter will run the byte code VM based on the passed
// configuration.
type Interpreter struct {
evm *EVM