diff options
Diffstat (limited to 'light/state_test.go')
-rw-r--r-- | light/state_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/light/state_test.go b/light/state_test.go index 89a64483d..d594ab9ff 100644 --- a/light/state_test.go +++ b/light/state_test.go @@ -41,7 +41,7 @@ func makeTestState() (common.Hash, ethdb.Database) { st.AddBalance(addr, big.NewInt(int64(i))) st.SetCode(addr, []byte{i, i, i}) } - root, _ := st.Commit() + root, _ := st.Commit(false) return root, sdb } |