changed state reset

This commit is contained in:
obscuren
2014-07-07 10:53:20 +02:00
parent 1199941475
commit d40cba3042
2 changed files with 9 additions and 9 deletions

View File

@ -161,7 +161,9 @@ func (self *State) Set(state *State) {
panic("Tried setting 'state' to nil through 'Set'")
}
*self = *state
self.trie = state.trie
self.stateObjects = state.stateObjects
//*self = *state
}
func (s *State) Put(key, object []byte) {