From bdd63837ea20f3103cd44a2fb76591be074dcade Mon Sep 17 00:00:00 2001 From: obscuren Date: Wed, 17 Jun 2015 13:39:19 +0200 Subject: [PATCH] core/state: removed trie copy --- core/state/statedb.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/state/statedb.go b/core/state/statedb.go index 134c4b3c76..f6f63f329c 100644 --- a/core/state/statedb.go +++ b/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() }