diff options
author | obscuren <geffobscura@gmail.com> | 2015-03-17 00:27:23 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-03-17 00:27:23 +0800 |
commit | bfcd2cf132c2f1e5c1afe6d71e3d9d9dcee5017b (patch) | |
tree | f3eb1f9fabc0ffe9be1a781fbbc04407049d7b7a /state | |
parent | e620bde405161771ea7ecd1cee8641eb9265465e (diff) | |
download | dexon-bfcd2cf132c2f1e5c1afe6d71e3d9d9dcee5017b.tar.gz dexon-bfcd2cf132c2f1e5c1afe6d71e3d9d9dcee5017b.tar.zst dexon-bfcd2cf132c2f1e5c1afe6d71e3d9d9dcee5017b.zip |
block conversion
Diffstat (limited to 'state')
-rw-r--r-- | state/dump.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/state/dump.go b/state/dump.go index 2aafd1998..db05fae0c 100644 --- a/state/dump.go +++ b/state/dump.go @@ -28,7 +28,6 @@ func (self *StateDB) RawDump() World { it := self.trie.Iterator() for it.Next() { - fmt.Printf("%x\n", it.Key, len(it.Key)) stateObject := NewStateObjectFromBytes(common.BytesToAddress(it.Key), it.Value, self.db) account := Account{Balance: stateObject.balance.String(), Nonce: stateObject.nonce, Root: common.Bytes2Hex(stateObject.Root()), CodeHash: common.Bytes2Hex(stateObject.codeHash)} |