aboutsummaryrefslogtreecommitdiffstats
path: root/ethchain/state.go
diff options
context:
space:
mode:
Diffstat (limited to 'ethchain/state.go')
-rw-r--r--ethchain/state.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/ethchain/state.go b/ethchain/state.go
index 20af94fe8..5d023df7b 100644
--- a/ethchain/state.go
+++ b/ethchain/state.go
@@ -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) {