diff options
author | obscuren <geffobscura@gmail.com> | 2014-11-14 21:17:54 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-11-14 21:17:54 +0800 |
commit | 56aa24002de357c24a9644a49d5702c8d4663909 (patch) | |
tree | 7791c7cbe4e66137cf85a405cf32751a7916ce70 /chain/block.go | |
parent | 711be7009ef5b9ad77f37a4ccd0dffcc9286e1f8 (diff) | |
download | dexon-56aa24002de357c24a9644a49d5702c8d4663909.tar.gz dexon-56aa24002de357c24a9644a49d5702c8d4663909.tar.zst dexon-56aa24002de357c24a9644a49d5702c8d4663909.zip |
Clean up
Diffstat (limited to 'chain/block.go')
-rw-r--r-- | chain/block.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chain/block.go b/chain/block.go index 23a7c63a2..a4ab560dc 100644 --- a/chain/block.go +++ b/chain/block.go @@ -238,7 +238,7 @@ func (block *Block) SetUncles(uncles []*Block) { func (self *Block) SetReceipts(receipts Receipts) { self.receipts = receipts self.ReceiptSha = DeriveSha(receipts) - self.LogsBloom = CreateBloom(self) + self.LogsBloom = CreateBloom(receipts) } func (self *Block) SetTransactions(txs Transactions) { |