Fix tests

This commit is contained in:
Karl Floersch 2020-05-14 15:07:13 -04:00
parent 48470e5f42
commit 2da9fbf298

View file

@ -196,7 +196,7 @@ func makeUint256WithUint64(num uint64) []byte {
func newState() *state.StateDB { func newState() *state.StateDB {
db := state.NewDatabase(rawdb.NewMemoryDatabase()) db := state.NewDatabase(rawdb.NewMemoryDatabase())
state, _ := state.New(common.Hash{}, db, nil) state, _ := state.New(common.Hash{}, db)
return state return state
} }