diff options
author | obscuren <geffobscura@gmail.com> | 2014-11-19 19:25:52 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-11-19 19:25:52 +0800 |
commit | 14e2e488fdf0f4d6ed1a5a48ffbbe883faa7edb6 (patch) | |
tree | 7d8b81beb6285eab7dfc8772b35f1d9d8ce1b186 /state | |
parent | 437d79f09418b24693b4e3fc4d2f88e291b5340f (diff) | |
download | go-tangerine-14e2e488fdf0f4d6ed1a5a48ffbbe883faa7edb6.tar.gz go-tangerine-14e2e488fdf0f4d6ed1a5a48ffbbe883faa7edb6.tar.zst go-tangerine-14e2e488fdf0f4d6ed1a5a48ffbbe883faa7edb6.zip |
Added `chain` tests & minor fixes
* Fork tests (equal and larger chains)
* `chain.link` fields are now exported
* moved debug function from state to dump.go
Diffstat (limited to 'state')
-rw-r--r-- | state/dump.go | 8 | ||||
-rw-r--r-- | state/state_object.go | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/state/dump.go b/state/dump.go index be3b362c4..186c6dd73 100644 --- a/state/dump.go +++ b/state/dump.go @@ -46,3 +46,11 @@ func (self *State) Dump() []byte { return json } + +// 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()) + }) +} 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 // |