aboutsummaryrefslogtreecommitdiffstats
path: root/xeth
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-02-09 23:20:34 +0800
committerobscuren <geffobscura@gmail.com>2015-02-10 20:04:38 +0800
commitda2fae0e437f9467a943acfe0571a8a24e8e76fd (patch)
treed760375fbcd441a6460c1ea1d7db930f78e1df20 /xeth
parentb22f0f2ef51bdb769259b3cf7d9ee0e8e5b0635e (diff)
downloadgo-tangerine-da2fae0e437f9467a943acfe0571a8a24e8e76fd.tar
go-tangerine-da2fae0e437f9467a943acfe0571a8a24e8e76fd.tar.gz
go-tangerine-da2fae0e437f9467a943acfe0571a8a24e8e76fd.tar.bz2
go-tangerine-da2fae0e437f9467a943acfe0571a8a24e8e76fd.tar.lz
go-tangerine-da2fae0e437f9467a943acfe0571a8a24e8e76fd.tar.xz
go-tangerine-da2fae0e437f9467a943acfe0571a8a24e8e76fd.tar.zst
go-tangerine-da2fae0e437f9467a943acfe0571a8a24e8e76fd.zip
Basic structure miner
Diffstat (limited to 'xeth')
-rw-r--r--xeth/types.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/xeth/types.go b/xeth/types.go
index 34caf5cbc..f1d6f0789 100644
--- a/xeth/types.go
+++ b/xeth/types.go
@@ -60,7 +60,6 @@ func (self *Object) Storage() (storage map[string]string) {
rlp.Decode(bytes.NewReader(it.Value), &data)
storage[toHex(it.Key)] = toHex(data)
}
- self.StateObject.Trie().PrintRoot()
return
}