From 69fa644bd1773b9daa17697440a5e21958e60895 Mon Sep 17 00:00:00 2001 From: jmlee Date: Wed, 17 Jul 2019 15:15:09 +0900 Subject: [PATCH] add comments --- core/state/statedb.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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