aboutsummaryrefslogtreecommitdiffstats
path: root/light/state_test.go
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2016-09-26 16:20:47 +0800
committerGitHub <noreply@github.com>2016-09-26 16:20:47 +0800
commit2e14aff80f294a34f6b28f0149b94fa7b9d3bf81 (patch)
tree17d1f3abefabfd7f8cb9149994a4788d2c0f08bc /light/state_test.go
parente859f3696783ec75d9bb39c0c66eda3a88cea8c6 (diff)
parenta59a93f476434f2805c8fd3e10bf1b2f579b078f (diff)
downloadgo-tangerine-2e14aff80f294a34f6b28f0149b94fa7b9d3bf81.tar.gz
go-tangerine-2e14aff80f294a34f6b28f0149b94fa7b9d3bf81.tar.zst
go-tangerine-2e14aff80f294a34f6b28f0149b94fa7b9d3bf81.zip
Merge pull request #3037 from karalabe/state-caching
State caching
Diffstat (limited to 'light/state_test.go')
-rw-r--r--light/state_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/light/state_test.go b/light/state_test.go
index 2c2e6daea..90c38604a 100644
--- a/light/state_test.go
+++ b/light/state_test.go
@@ -62,7 +62,7 @@ func makeTestState() (common.Hash, ethdb.Database) {
}
so.AddBalance(big.NewInt(int64(i)))
so.SetCode([]byte{i, i, i})
- so.Update()
+ so.UpdateRoot(sdb)
st.UpdateStateObject(so)
}
root, _ := st.Commit()