diff options
author | obscuren <geffobscura@gmail.com> | 2014-07-17 21:01:33 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-07-17 21:01:33 +0800 |
commit | 90f63657cbcbf6768cd146d17d176d2a0ee4b778 (patch) | |
tree | fdd86d398ebb4068290bbba0fa495bd6aefab53f /ethchain | |
parent | 0415e4a637296539e7a5c09282b7aee19268e599 (diff) | |
download | dexon-90f63657cbcbf6768cd146d17d176d2a0ee4b778.tar.gz dexon-90f63657cbcbf6768cd146d17d176d2a0ee4b778.tar.zst dexon-90f63657cbcbf6768cd146d17d176d2a0ee4b778.zip |
Removed debug log
Diffstat (limited to 'ethchain')
-rw-r--r-- | ethchain/state.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ethchain/state.go b/ethchain/state.go index 9748da1bc..684b81102 100644 --- a/ethchain/state.go +++ b/ethchain/state.go @@ -61,7 +61,6 @@ func (self *State) UpdateStateObject(stateObject *StateObject) { addr := stateObject.Address() ethutil.Config.Db.Put(ethcrypto.Sha3Bin(stateObject.Script()), stateObject.Script()) - fmt.Printf("balance %v %p\n", stateObject.Amount, stateObject) self.trie.Update(string(addr), string(stateObject.RlpEncode())) |