diff options
author | obscuren <geffobscura@gmail.com> | 2014-05-22 23:35:26 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-05-22 23:35:26 +0800 |
commit | 230aafbf66ba747fb3796810adf3b1680f368e73 (patch) | |
tree | 66aff77b70bf083cc1a7ce32ab108d39d82ac95d /ethchain/state_object.go | |
parent | 14787ac148274a84478aa06fd985407b9241cd50 (diff) | |
download | go-tangerine-230aafbf66ba747fb3796810adf3b1680f368e73.tar go-tangerine-230aafbf66ba747fb3796810adf3b1680f368e73.tar.gz go-tangerine-230aafbf66ba747fb3796810adf3b1680f368e73.tar.bz2 go-tangerine-230aafbf66ba747fb3796810adf3b1680f368e73.tar.lz go-tangerine-230aafbf66ba747fb3796810adf3b1680f368e73.tar.xz go-tangerine-230aafbf66ba747fb3796810adf3b1680f368e73.tar.zst go-tangerine-230aafbf66ba747fb3796810adf3b1680f368e73.zip |
Working on interop
* Receipts after each transaction
* Fee structure
* Applying fees to miners
Diffstat (limited to 'ethchain/state_object.go')
-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 8e059f334..4046054db 100644 --- a/ethchain/state_object.go +++ b/ethchain/state_object.go @@ -146,7 +146,7 @@ func (c *StateObject) RlpEncode() []byte { if c.state != nil { root = c.state.trie.Root } else { - root = ZeroHash256 + root = "" } return ethutil.Encode([]interface{}{c.Amount, c.Nonce, root, ethutil.Sha3Bin(c.script)}) |