aboutsummaryrefslogtreecommitdiffstats
path: root/core/state/dump.go
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2018-04-10 17:28:30 +0800
committerGitHub <noreply@github.com>2018-04-10 17:28:30 +0800
commit39f4c80155b891643b098f99edd0e630e16a5f99 (patch)
tree5c8fcbbcb5b7c0159f9416a9dd33653d4f5c0984 /core/state/dump.go
parent1100e8ba633d968da8ae2caca0a5d0cf48bcfa92 (diff)
parent8c31d2897ba6bf32097dffcd1bbe899172396533 (diff)
downloaddexon-39f4c80155b891643b098f99edd0e630e16a5f99.tar
dexon-39f4c80155b891643b098f99edd0e630e16a5f99.tar.gz
dexon-39f4c80155b891643b098f99edd0e630e16a5f99.tar.bz2
dexon-39f4c80155b891643b098f99edd0e630e16a5f99.tar.lz
dexon-39f4c80155b891643b098f99edd0e630e16a5f99.tar.xz
dexon-39f4c80155b891643b098f99edd0e630e16a5f99.tar.zst
dexon-39f4c80155b891643b098f99edd0e630e16a5f99.zip
Merge pull request #15225 from holiman/test_removefrom_dirtyset
Change handling of dirty objects in state
Diffstat (limited to 'core/state/dump.go')
-rw-r--r--core/state/dump.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/state/dump.go b/core/state/dump.go
index 46e612850..072dbbf05 100644
--- a/core/state/dump.go
+++ b/core/state/dump.go
@@ -53,7 +53,7 @@ func (self *StateDB) RawDump() Dump {
panic(err)
}
- obj := newObject(nil, common.BytesToAddress(addr), data, nil)
+ obj := newObject(nil, common.BytesToAddress(addr), data)
account := DumpAccount{
Balance: data.Balance.String(),
Nonce: data.Nonce,