aboutsummaryrefslogtreecommitdiffstats
path: root/ethchain/block.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-10-21 19:25:31 +0800
committerobscuren <geffobscura@gmail.com>2014-10-21 19:25:31 +0800
commit520fdfe346ab51708f4f1fdfd0b2e42cc919e613 (patch)
tree51e9bef882bee329c18c85102fb98350d5880b0e /ethchain/block.go
parent10b252dd0517175117d8d4a8ef30b3689a10eda5 (diff)
downloaddexon-520fdfe346ab51708f4f1fdfd0b2e42cc919e613.tar.gz
dexon-520fdfe346ab51708f4f1fdfd0b2e42cc919e613.tar.zst
dexon-520fdfe346ab51708f4f1fdfd0b2e42cc919e613.zip
PoC7 Net
Diffstat (limited to 'ethchain/block.go')
-rw-r--r--ethchain/block.go6
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) {