aboutsummaryrefslogtreecommitdiffstats
path: root/ethchain/state_object.go
diff options
context:
space:
mode:
authorzelig <viktor.tron@gmail.com>2014-06-25 23:58:07 +0800
committerzelig <viktor.tron@gmail.com>2014-06-25 23:58:07 +0800
commit98f1ee9442d3b3d744e25dbddd9b54dc60180ad1 (patch)
treef05f7be355838fd104f227714082bd9ea89cb591 /ethchain/state_object.go
parenta02edf7a9306c9c0b2f0208152347b47f1a4e689 (diff)
parentb0dc50c2a0e25bf88901f3dd481f14bc3375adc5 (diff)
downloaddexon-98f1ee9442d3b3d744e25dbddd9b54dc60180ad1.tar
dexon-98f1ee9442d3b3d744e25dbddd9b54dc60180ad1.tar.gz
dexon-98f1ee9442d3b3d744e25dbddd9b54dc60180ad1.tar.bz2
dexon-98f1ee9442d3b3d744e25dbddd9b54dc60180ad1.tar.lz
dexon-98f1ee9442d3b3d744e25dbddd9b54dc60180ad1.tar.xz
dexon-98f1ee9442d3b3d744e25dbddd9b54dc60180ad1.tar.zst
dexon-98f1ee9442d3b3d744e25dbddd9b54dc60180ad1.zip
merge upstream
Diffstat (limited to 'ethchain/state_object.go')
-rw-r--r--ethchain/state_object.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/ethchain/state_object.go b/ethchain/state_object.go
index 26ad3e982..480b4055d 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))