mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
add comments
This commit is contained in:
parent
5d009f2389
commit
69fa644bd1
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue