diff options
author | Felix Lange <fjl@twurst.com> | 2016-09-23 03:04:58 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2016-09-26 16:31:18 +0800 |
commit | dc2b23c869a38cf5dce72479593c5ad6021cbf1b (patch) | |
tree | 72e11683e2cacbee0977d4b7265cf0f973974f71 /light | |
parent | 6999f1da6b0f8c93b40aa90250e55166018a11a5 (diff) | |
download | go-tangerine-dc2b23c869a38cf5dce72479593c5ad6021cbf1b.tar go-tangerine-dc2b23c869a38cf5dce72479593c5ad6021cbf1b.tar.gz go-tangerine-dc2b23c869a38cf5dce72479593c5ad6021cbf1b.tar.bz2 go-tangerine-dc2b23c869a38cf5dce72479593c5ad6021cbf1b.tar.lz go-tangerine-dc2b23c869a38cf5dce72479593c5ad6021cbf1b.tar.xz go-tangerine-dc2b23c869a38cf5dce72479593c5ad6021cbf1b.tar.zst go-tangerine-dc2b23c869a38cf5dce72479593c5ad6021cbf1b.zip |
[release/1.4.13] core/state: track all accounts in canon state
This change introduces a global, per-state cache that keeps account data
in the canon state. Thanks to @karalabe for lots of fixes.
(cherry picked from commit a59a93f476434f2805c8fd3e10bf1b2f579b078f)
Diffstat (limited to 'light')
-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 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() |