aboutsummaryrefslogtreecommitdiffstats
path: root/core/state/state_object.go
diff options
context:
space:
mode:
authorGustav Simonsson <gustav.simonsson@gmail.com>2015-09-08 21:53:17 +0800
committerGustav Simonsson <gustav.simonsson@gmail.com>2015-09-08 21:56:11 +0800
commit004ed786b424ef3d6491ce46c3d893d8ecac3cc2 (patch)
tree649cd653b3c8f4ea309b01d16b1d0ec90fea7d51 /core/state/state_object.go
parentedaea698172feecc6130938c8d6197f8653c0a83 (diff)
downloaddexon-004ed786b424ef3d6491ce46c3d893d8ecac3cc2.tar.gz
dexon-004ed786b424ef3d6491ce46c3d893d8ecac3cc2.tar.zst
dexon-004ed786b424ef3d6491ce46c3d893d8ecac3cc2.zip
core/state: deleted field in StateObject Copy() and unit test
Diffstat (limited to 'core/state/state_object.go')
-rw-r--r--core/state/state_object.go1
1 files changed, 1 insertions, 0 deletions
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
}