diff options
author | obscuren <geffobscura@gmail.com> | 2014-06-23 17:26:31 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-06-23 17:26:31 +0800 |
commit | 803e4807ede157db36030c6415a4f515f723ccf0 (patch) | |
tree | 689f190e433d77a322fd80ea61245f08917ffd92 | |
parent | a4e26bf7c2c0cfc65be14ef98af695a0d663609f (diff) | |
download | dexon-803e4807ede157db36030c6415a4f515f723ccf0.tar.gz dexon-803e4807ede157db36030c6415a4f515f723ccf0.tar.zst dexon-803e4807ede157db36030c6415a4f515f723ccf0.zip |
Removed comments
-rw-r--r-- | ethchain/state_object.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ethchain/state_object.go b/ethchain/state_object.go index 17391963f..0a2e28ded 100644 --- a/ethchain/state_object.go +++ b/ethchain/state_object.go @@ -94,10 +94,10 @@ func (c *StateObject) SetStorage(num *big.Int, val *ethutil.Value) { // FIXME This should be handled in the Trie it self if val.BigInt().Cmp(ethutil.Big0) == 0 { c.state.trie.Delete(string(addr)) + return } - //fmt.Printf("sstore %x => %v\n", addr, val) c.SetAddr(addr, val) } |