aboutsummaryrefslogtreecommitdiffstats
path: root/state/state_object.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-11-04 06:45:44 +0800
committerobscuren <geffobscura@gmail.com>2014-11-04 06:45:44 +0800
commita82b89e2d524a9b7f758dc2d981e8af835d8cd2a (patch)
treeae3c3c3c8bdd24f1a76c455338c42635a2d1385a /state/state_object.go
parentc8302882c87afffeb7d9241060e24984a04cb8eb (diff)
downloadgo-tangerine-a82b89e2d524a9b7f758dc2d981e8af835d8cd2a.tar.gz
go-tangerine-a82b89e2d524a9b7f758dc2d981e8af835d8cd2a.tar.zst
go-tangerine-a82b89e2d524a9b7f758dc2d981e8af835d8cd2a.zip
Added storage root to dump
Diffstat (limited to 'state/state_object.go')
-rw-r--r--state/state_object.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/state/state_object.go b/state/state_object.go
index 472aa8389..70a1766ce 100644
--- a/state/state_object.go
+++ b/state/state_object.go
@@ -283,6 +283,10 @@ func (self *StateObject) Object() *StateObject {
return self
}
+func (self *StateObject) Root() []byte {
+ return self.State.Trie.GetRoot()
+}
+
// Debug stuff
func (self *StateObject) CreateOutputForDiff() {
fmt.Printf("%x %x %x %x\n", self.Address(), self.State.Root(), self.balance.Bytes(), self.Nonce)
@@ -297,6 +301,7 @@ func (self *StateObject) CreateOutputForDiff() {
// State object encoding methods
func (c *StateObject) RlpEncode() []byte {
+ fmt.Printf("%x %x\n", c.State.Trie.Root, c.CodeHash())
return ethutil.Encode([]interface{}{c.Nonce, c.balance, c.State.Trie.Root, c.CodeHash()})
}