diff options
author | obscuren <geffobscura@gmail.com> | 2014-06-23 22:11:55 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-06-23 22:11:55 +0800 |
commit | 16e8fc7427115e67096c6056b2ad9401803fcb44 (patch) | |
tree | c1928398d8554f9bfd7421b21feb8a3eec1da03c /ethchain/state_object.go | |
parent | 614624754d2dcaf9344a3efbfa880c9b0ddba6be (diff) | |
download | go-tangerine-16e8fc7427115e67096c6056b2ad9401803fcb44.tar go-tangerine-16e8fc7427115e67096c6056b2ad9401803fcb44.tar.gz go-tangerine-16e8fc7427115e67096c6056b2ad9401803fcb44.tar.bz2 go-tangerine-16e8fc7427115e67096c6056b2ad9401803fcb44.tar.lz go-tangerine-16e8fc7427115e67096c6056b2ad9401803fcb44.tar.xz go-tangerine-16e8fc7427115e67096c6056b2ad9401803fcb44.tar.zst go-tangerine-16e8fc7427115e67096c6056b2ad9401803fcb44.zip |
Logging order
Diffstat (limited to 'ethchain/state_object.go')
-rw-r--r-- | ethchain/state_object.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ethchain/state_object.go b/ethchain/state_object.go index 0a2e28ded..270c9a7f8 100644 --- a/ethchain/state_object.go +++ b/ethchain/state_object.go @@ -91,7 +91,6 @@ func (c *StateObject) SetAddr(addr []byte, value interface{}) { func (c *StateObject) SetStorage(num *big.Int, val *ethutil.Value) { addr := ethutil.BigToBytes(num, 256) - // FIXME This should be handled in the Trie it self if val.BigInt().Cmp(ethutil.Big0) == 0 { c.state.trie.Delete(string(addr)) |