From 2da9fbf2986d29cbd62a5f9143297162ec7f8eaf Mon Sep 17 00:00:00 2001 From: Karl Floersch Date: Thu, 14 May 2020 15:07:13 -0400 Subject: [PATCH] Fix tests --- tests/ovm_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ovm_test.go b/tests/ovm_test.go index da69a140ba..b6392994cd 100644 --- a/tests/ovm_test.go +++ b/tests/ovm_test.go @@ -196,7 +196,7 @@ func makeUint256WithUint64(num uint64) []byte { func newState() *state.StateDB { db := state.NewDatabase(rawdb.NewMemoryDatabase()) - state, _ := state.New(common.Hash{}, db, nil) + state, _ := state.New(common.Hash{}, db) return state }