@@ -32,7 +32,7 @@ type twoOperandTest struct {
32
32
33
33
func testTwoOperandOp (t * testing.T , tests []twoOperandTest , opFn func (pc * uint64 , evm * EVM , contract * Contract , memory * Memory , stack * Stack ) ([]byte , error )) {
34
34
var (
35
- env = NewEVM (Context {}, nil , params .TestChainConfig , Config {EnableJit : false , ForceJit : false })
35
+ env = NewEVM (Context {}, nil , params .TestChainConfig , Config {})
36
36
stack = newstack ()
37
37
pc = uint64 (0 )
38
38
)
@@ -68,7 +68,7 @@ func testTwoOperandOp(t *testing.T, tests []twoOperandTest, opFn func(pc *uint64
68
68
69
69
func TestByteOp (t * testing.T ) {
70
70
var (
71
- env = NewEVM (Context {}, nil , params .TestChainConfig , Config {EnableJit : false , ForceJit : false })
71
+ env = NewEVM (Context {}, nil , params .TestChainConfig , Config {})
72
72
stack = newstack ()
73
73
)
74
74
tests := []struct {
@@ -198,7 +198,7 @@ func TestSLT(t *testing.T) {
198
198
199
199
func opBenchmark (bench * testing.B , op func (pc * uint64 , evm * EVM , contract * Contract , memory * Memory , stack * Stack ) ([]byte , error ), args ... string ) {
200
200
var (
201
- env = NewEVM (Context {}, nil , params .TestChainConfig , Config {EnableJit : false , ForceJit : false })
201
+ env = NewEVM (Context {}, nil , params .TestChainConfig , Config {})
202
202
stack = newstack ()
203
203
)
204
204
// convert args
0 commit comments