diff options
author | obscuren <geffobscura@gmail.com> | 2015-04-02 05:58:26 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-04-02 05:58:26 +0800 |
commit | b8124ec79182dbf90b28c8527f2440cea6473f1b (patch) | |
tree | e5c14f90203a9b2a1d37cff28f92918b2ed54398 /tests/blocktest.go | |
parent | 219d94c1ddcb1e1e8a3fbfcfdcb545e6271dd5be (diff) | |
download | go-tangerine-b8124ec79182dbf90b28c8527f2440cea6473f1b.tar go-tangerine-b8124ec79182dbf90b28c8527f2440cea6473f1b.tar.gz go-tangerine-b8124ec79182dbf90b28c8527f2440cea6473f1b.tar.bz2 go-tangerine-b8124ec79182dbf90b28c8527f2440cea6473f1b.tar.lz go-tangerine-b8124ec79182dbf90b28c8527f2440cea6473f1b.tar.xz go-tangerine-b8124ec79182dbf90b28c8527f2440cea6473f1b.tar.zst go-tangerine-b8124ec79182dbf90b28c8527f2440cea6473f1b.zip |
Removed old (unused) argument
Diffstat (limited to 'tests/blocktest.go')
-rw-r--r-- | tests/blocktest.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/blocktest.go b/tests/blocktest.go index fc62eda58..1c4f1c2f2 100644 --- a/tests/blocktest.go +++ b/tests/blocktest.go @@ -114,7 +114,7 @@ func (t *BlockTest) InsertPreState(db common.Database) (*state.StateDB, error) { } } // sync objects to trie - statedb.Update(nil) + statedb.Update() // sync trie to disk statedb.Sync() |