diff options
Diffstat (limited to 'state/state_object.go')
-rw-r--r-- | state/state_object.go | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/state/state_object.go b/state/state_object.go index 5ce74c434..729e32ae4 100644 --- a/state/state_object.go +++ b/state/state_object.go @@ -287,14 +287,6 @@ 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) - self.EachStorage(func(addr string, value *ethutil.Value) { - fmt.Printf("%x %x\n", addr, value.Bytes()) - }) -} - // // Encoding // |