diff options
author | obscuren <geffobscura@gmail.com> | 2014-05-21 01:19:53 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-05-21 01:19:53 +0800 |
commit | ad51c85e5d67ca2e64e95786e79d062c4467b4c1 (patch) | |
tree | ec5266983176f6583c8bb08d51467efeb9dd175a /ethchain | |
parent | 4b13f93a3e0f2901a8e1aa38dfef115e24c63ef0 (diff) | |
download | dexon-ad51c85e5d67ca2e64e95786e79d062c4467b4c1.tar.gz dexon-ad51c85e5d67ca2e64e95786e79d062c4467b4c1.tar.zst dexon-ad51c85e5d67ca2e64e95786e79d062c4467b4c1.zip |
Fixed crash
Diffstat (limited to 'ethchain')
-rw-r--r-- | ethchain/block.go | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ethchain/block.go b/ethchain/block.go index c6c2c1226..bdb243286 100644 --- a/ethchain/block.go +++ b/ethchain/block.go @@ -99,6 +99,9 @@ func CreateBlock(root interface{}, Time: time.Now().Unix(), Extra: extra, UncleSha: EmptyShaList, + GasUsed: new(big.Int), + MinGasPrice: new(big.Int), + GasLimit: new(big.Int), contractStates: make(map[string]*ethutil.Trie), } block.SetTransactions(txes) @@ -220,7 +223,7 @@ func (block *Block) SetTransactions(txs []*Transaction) { trie.Update(strconv.Itoa(i), string(tx.RlpEncode())) } - block.TxSha = trie.Root.([]byte) + block.TxSha = []byte(trie.Root.(string)) } func (block *Block) Value() *ethutil.Value { |