diff options
author | obscuren <geffobscura@gmail.com> | 2015-03-19 21:31:41 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-03-19 21:31:41 +0800 |
commit | d4e5747d040f290eb3697ded891619887a8593da (patch) | |
tree | 4df57f053b3a4dd7b7dde4fde3d4ddeafd14f98e /state/dump.go | |
parent | e13c6739804604849c7e43d27b073e68fba58191 (diff) | |
parent | cf45b939a098c9421092226d5c76dbce34eb2dda (diff) | |
download | dexon-d4e5747d040f290eb3697ded891619887a8593da.tar dexon-d4e5747d040f290eb3697ded891619887a8593da.tar.gz dexon-d4e5747d040f290eb3697ded891619887a8593da.tar.bz2 dexon-d4e5747d040f290eb3697ded891619887a8593da.tar.lz dexon-d4e5747d040f290eb3697ded891619887a8593da.tar.xz dexon-d4e5747d040f290eb3697ded891619887a8593da.tar.zst dexon-d4e5747d040f290eb3697ded891619887a8593da.zip |
Merge branch 'develop' into conversion
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 db05fae0c..712f8da1f 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 |