diff --git a/core/state/statedb.go b/core/state/statedb.go index 5e8481648e..1f18cc788f 100644 --- a/core/state/statedb.go +++ b/core/state/statedb.go @@ -63,8 +63,8 @@ func (n *proofList) Delete(key []byte) error { // * Contracts // * Accounts type StateDB struct { - db Database - trie Trie + db Database // actually it's leveldb (jmlee) + trie Trie // state trie from db above (jmlee) // This map holds 'live' objects, which will get modified while processing a state transition. stateObjects map[common.Address]*stateObject