diff options
Diffstat (limited to 'eth/tracers/tracers_test.go')
-rw-r--r-- | eth/tracers/tracers_test.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/eth/tracers/tracers_test.go b/eth/tracers/tracers_test.go index bf8120228..d25fc459a 100644 --- a/eth/tracers/tracers_test.go +++ b/eth/tracers/tracers_test.go @@ -159,8 +159,7 @@ func TestCallTracer(t *testing.T) { GasLimit: uint64(test.Context.GasLimit), GasPrice: tx.GasPrice(), } - db, _ := ethdb.NewMemDatabase() - statedb := tests.MakePreState(db, test.Genesis.Alloc) + statedb := tests.MakePreState(ethdb.NewMemDatabase(), test.Genesis.Alloc) // Create the tracer, the EVM environment and run it tracer, err := New("callTracer") |