From 004ed786b424ef3d6491ce46c3d893d8ecac3cc2 Mon Sep 17 00:00:00 2001 From: Gustav Simonsson Date: Tue, 8 Sep 2015 15:53:17 +0200 Subject: core/state: deleted field in StateObject Copy() and unit test --- core/state/state_object.go | 1 + 1 file changed, 1 insertion(+) (limited to 'core/state/state_object.go') diff --git a/core/state/state_object.go b/core/state/state_object.go index c76feb774..0af0fbd5a 100644 --- a/core/state/state_object.go +++ b/core/state/state_object.go @@ -263,6 +263,7 @@ func (self *StateObject) Copy() *StateObject { stateObject.gasPool.Set(self.gasPool) stateObject.remove = self.remove stateObject.dirty = self.dirty + stateObject.deleted = self.deleted return stateObject } -- cgit