Finish initial StateDB implementation

This commit is contained in:
Aleksandr Bezobchuk
2018-10-04 12:06:19 -04:00
parent 817f9605aa
commit 2feb5bbb5b
3 changed files with 147 additions and 39 deletions
+5 -1
View File
@@ -21,7 +21,11 @@ var _ auth.Account = (*Account)(nil)
type Account struct {
*auth.BaseAccount
Root ethcmn.Hash // merkle root of the storage trie
// merkle root of the storage trie
//
// TODO: good chance we may not need this
Root ethcmn.Hash
CodeHash []byte
}