diff options
author | Joey Zhou <josephyzhou@gmail.com> | 2014-07-04 02:31:47 +0800 |
---|---|---|
committer | Joey Zhou <josephyzhou@gmail.com> | 2014-07-04 02:31:47 +0800 |
commit | 7c41e413e4c596ac0010305be0f851353c065df6 (patch) | |
tree | e3ffa72d27eae2bd5c7405280155366e69382ad8 | |
parent | 5d6713920625b82df2b55728b2cbb9f7f3df2025 (diff) | |
download | dexon-7c41e413e4c596ac0010305be0f851353c065df6.tar dexon-7c41e413e4c596ac0010305be0f851353c065df6.tar.gz dexon-7c41e413e4c596ac0010305be0f851353c065df6.tar.bz2 dexon-7c41e413e4c596ac0010305be0f851353c065df6.tar.lz dexon-7c41e413e4c596ac0010305be0f851353c065df6.tar.xz dexon-7c41e413e4c596ac0010305be0f851353c065df6.tar.zst dexon-7c41e413e4c596ac0010305be0f851353c065df6.zip |
typo, duplications
-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 cc9a801f9..d974daea5 100644 --- a/ethchain/state_object.go +++ b/ethchain/state_object.go @@ -249,7 +249,6 @@ func (c *StateObject) RlpDecode(data []byte) { c.Nonce = decoder.Get(0).Uint() c.Amount = decoder.Get(1).BigInt() c.state = NewState(ethtrie.NewTrie(ethutil.Config.Db, decoder.Get(2).Interface())) - c.state = NewState(ethtrie.NewTrie(ethutil.Config.Db, decoder.Get(2).Interface())) c.ScriptHash = decoder.Get(3).Bytes() |