aboutsummaryrefslogtreecommitdiffstats
path: root/state/dump.go
diff options
context:
space:
mode:
authorFelix Lange <fjl@twurst.com>2015-03-17 00:29:08 +0800
committerFelix Lange <fjl@twurst.com>2015-03-17 00:29:08 +0800
commit13ade2ed601f84a1f2fa604483a25e99aa6622b1 (patch)
tree18171aa12858f2779d00921733442a0089055d57 /state/dump.go
parent64490897f3d7689fcd49dd3ae94b2b307f59b6cb (diff)
parentbfcd2cf132c2f1e5c1afe6d71e3d9d9dcee5017b (diff)
downloadgo-tangerine-13ade2ed601f84a1f2fa604483a25e99aa6622b1.tar
go-tangerine-13ade2ed601f84a1f2fa604483a25e99aa6622b1.tar.gz
go-tangerine-13ade2ed601f84a1f2fa604483a25e99aa6622b1.tar.bz2
go-tangerine-13ade2ed601f84a1f2fa604483a25e99aa6622b1.tar.lz
go-tangerine-13ade2ed601f84a1f2fa604483a25e99aa6622b1.tar.xz
go-tangerine-13ade2ed601f84a1f2fa604483a25e99aa6622b1.tar.zst
go-tangerine-13ade2ed601f84a1f2fa604483a25e99aa6622b1.zip
Merge branch 'conversion' of https://github.com/ethereum/go-ethereum
Diffstat (limited to 'state/dump.go')
-rw-r--r--state/dump.go1
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)}