Merge branch 'develop' into conversion

This commit is contained in:
obscuren
2015-03-19 14:31:41 +01:00
408 changed files with 33298 additions and 2270 deletions

View File

@@ -33,6 +33,10 @@ func New(root common.Hash, db common.Database) *StateDB {
return &StateDB{db: db, trie: trie, stateObjects: make(map[string]*StateObject), refund: make(map[string]*big.Int)}
}
func (self *StateDB) PrintRoot() {
self.trie.Trie.PrintRoot()
}
func (self *StateDB) EmptyLogs() {
self.logs = nil
}