diff options
author | obscuren <geffobscura@gmail.com> | 2014-11-04 08:33:31 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-11-04 08:33:31 +0800 |
commit | f76f953f0cad3b55d6817ce766def50a587f1d19 (patch) | |
tree | 88f8d770ed0c4368f79390c128848c439e2c467b /state | |
parent | 9c2b8786784109a0d3fd902cfe351f4616c2491c (diff) | |
download | go-tangerine-f76f953f0cad3b55d6817ce766def50a587f1d19.tar.gz go-tangerine-f76f953f0cad3b55d6817ce766def50a587f1d19.tar.zst go-tangerine-f76f953f0cad3b55d6817ce766def50a587f1d19.zip |
Removed debug print
Diffstat (limited to 'state')
-rw-r--r-- | state/state_object.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/state/state_object.go b/state/state_object.go index 70a1766ce..dde058e12 100644 --- a/state/state_object.go +++ b/state/state_object.go @@ -301,7 +301,6 @@ 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()}) } |