diff options
author | obscuren <geffobscura@gmail.com> | 2014-10-21 19:25:31 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-10-21 19:25:31 +0800 |
commit | 520fdfe346ab51708f4f1fdfd0b2e42cc919e613 (patch) | |
tree | 51e9bef882bee329c18c85102fb98350d5880b0e /ethchain/block.go | |
parent | 10b252dd0517175117d8d4a8ef30b3689a10eda5 (diff) | |
download | go-tangerine-520fdfe346ab51708f4f1fdfd0b2e42cc919e613.tar go-tangerine-520fdfe346ab51708f4f1fdfd0b2e42cc919e613.tar.gz go-tangerine-520fdfe346ab51708f4f1fdfd0b2e42cc919e613.tar.bz2 go-tangerine-520fdfe346ab51708f4f1fdfd0b2e42cc919e613.tar.lz go-tangerine-520fdfe346ab51708f4f1fdfd0b2e42cc919e613.tar.xz go-tangerine-520fdfe346ab51708f4f1fdfd0b2e42cc919e613.tar.zst go-tangerine-520fdfe346ab51708f4f1fdfd0b2e42cc919e613.zip |
PoC7 Net
Diffstat (limited to 'ethchain/block.go')
-rw-r--r-- | ethchain/block.go | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ethchain/block.go b/ethchain/block.go index 0fb01ea5b..fc7c6b13f 100644 --- a/ethchain/block.go +++ b/ethchain/block.go @@ -130,7 +130,7 @@ func CreateBlock(root interface{}, Nonce: Nonce, Time: time.Now().Unix(), Extra: extra, - UncleSha: EmptyShaList, + UncleSha: EmptyShaList, //nil, GasUsed: new(big.Int), MinGasPrice: new(big.Int), GasLimit: new(big.Int), @@ -237,7 +237,9 @@ func (block *Block) SetUncles(uncles []*Block) { block.Uncles = uncles // Sha of the concatenated uncles - block.UncleSha = ethcrypto.Sha3(ethutil.Encode(block.rlpUncles())) + //if len(uncles) > 0 { + // block.UncleSha = ethcrypto.Sha3(ethutil.Encode(block.rlpUncles())) + //} } func (self *Block) SetReceipts(receipts []*Receipt, txs []*Transaction) { |