Commit 3778f1bf authored by Felix Lange's avatar Felix Lange Committed by GitHub

Merge pull request #3009 from Gustav-Simonsson/fix_oom_in_light

light: fix memory expansion bug (same as fix for core/state)
parents f85f4646 22eea17b
...@@ -261,7 +261,9 @@ func (self *LightState) Copy() *LightState { ...@@ -261,7 +261,9 @@ func (self *LightState) Copy() *LightState {
state := NewLightState(common.Hash{}, self.odr) state := NewLightState(common.Hash{}, self.odr)
state.trie = self.trie state.trie = self.trie
for k, stateObject := range self.stateObjects { for k, stateObject := range self.stateObjects {
state.stateObjects[k] = stateObject.Copy() if stateObject.dirty {
state.stateObjects[k] = stateObject.Copy()
}
} }
return state return state
......
...@@ -186,7 +186,7 @@ func (self *StateObject) Copy() *StateObject { ...@@ -186,7 +186,7 @@ func (self *StateObject) Copy() *StateObject {
stateObject.codeHash = common.CopyBytes(self.codeHash) stateObject.codeHash = common.CopyBytes(self.codeHash)
stateObject.nonce = self.nonce stateObject.nonce = self.nonce
stateObject.trie = self.trie stateObject.trie = self.trie
stateObject.code = common.CopyBytes(self.code) stateObject.code = self.code
stateObject.storage = self.storage.Copy() stateObject.storage = self.storage.Copy()
stateObject.remove = self.remove stateObject.remove = self.remove
stateObject.dirty = self.dirty stateObject.dirty = self.dirty
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment