mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-25 22:26:42 +00:00
core/vm: fix benchmark
This commit is contained in:
parent
0c4ece0166
commit
06990c1544
1 changed files with 1 additions and 1 deletions
|
|
@ -952,7 +952,7 @@ func TestManyLargeStacks(t *testing.T) {
|
|||
}...)
|
||||
|
||||
main := common.HexToAddress("0xbb")
|
||||
statedb, _ := state.New(types.EmptyRootHash, state.NewDatabase(rawdb.NewMemoryDatabase()), nil)
|
||||
statedb, _ := state.New(types.EmptyRootHash, state.NewDatabaseForTesting())
|
||||
statedb.SetCode(main, code)
|
||||
|
||||
//tracer := logger.NewJSONLogger(nil, os.Stdout)
|
||||
|
|
|
|||
Loading…
Reference in a new issue