core/state: removed trie copy

pull/1282/head
obscuren 9 years ago
parent aa699a1283
commit bdd63837ea
  1. 2
      core/state/statedb.go

@ -259,7 +259,7 @@ func (s *StateDB) Cmp(other *StateDB) bool {
func (self *StateDB) Copy() *StateDB {
state := New(common.Hash{}, self.db)
state.trie = self.trie.Copy()
state.trie = self.trie
for k, stateObject := range self.stateObjects {
state.stateObjects[k] = stateObject.Copy()
}

Loading…
Cancel
Save