aboutsummaryrefslogtreecommitdiffstats
path: root/core/state/state_object.go
diff options
context:
space:
mode:
authorFelix Lange <fjl@twurst.com>2015-09-10 00:42:36 +0800
committerFelix Lange <fjl@twurst.com>2015-09-10 00:42:36 +0800
commit90f1fe0ed2399f90f01c09e61e244121ef7d148a (patch)
tree5c92ac4072ddcf78e54678e137643be2513ac2bf /core/state/state_object.go
parent28b13a4d1e0be7b14d23efdbe08b7ae133008ce8 (diff)
parentbf879ef230b33f3cff4c075c205dbaeb8f09d820 (diff)
downloaddexon-90f1fe0ed2399f90f01c09e61e244121ef7d148a.tar.gz
dexon-90f1fe0ed2399f90f01c09e61e244121ef7d148a.tar.zst
dexon-90f1fe0ed2399f90f01c09e61e244121ef7d148a.zip
Merge pull request #1781 from Gustav-Simonsson/state_object_copy
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
}