diff options
Diffstat (limited to 'state/dump.go')
-rw-r--r-- | state/dump.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/state/dump.go b/state/dump.go index c5f556e1a..6db0d5074 100644 --- a/state/dump.go +++ b/state/dump.go @@ -35,6 +35,7 @@ func (self *StateDB) RawDump() World { storageIt := stateObject.State.trie.Iterator() for storageIt.Next() { + fmt.Println("value", storageIt.Value) account.Storage[common.Bytes2Hex(storageIt.Key)] = common.Bytes2Hex(storageIt.Value) } world.Accounts[common.Bytes2Hex(it.Key)] = account |