mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-26 06:36:43 +00:00
core/vm: fix benchmark
This commit is contained in:
parent
d1e8b715d3
commit
fcce8268bf
1 changed files with 1 additions and 1 deletions
|
|
@ -952,7 +952,7 @@ func TestManyLargeStacks(t *testing.T) {
|
||||||
}...)
|
}...)
|
||||||
|
|
||||||
main := common.HexToAddress("0xbb")
|
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)
|
statedb.SetCode(main, code)
|
||||||
|
|
||||||
//tracer := logger.NewJSONLogger(nil, os.Stdout)
|
//tracer := logger.NewJSONLogger(nil, os.Stdout)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue