aboutsummaryrefslogtreecommitdiffstats
path: root/chain/block.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-11-14 21:17:54 +0800
committerobscuren <geffobscura@gmail.com>2014-11-14 21:17:54 +0800
commit56aa24002de357c24a9644a49d5702c8d4663909 (patch)
tree7791c7cbe4e66137cf85a405cf32751a7916ce70 /chain/block.go
parent711be7009ef5b9ad77f37a4ccd0dffcc9286e1f8 (diff)
downloadgo-tangerine-56aa24002de357c24a9644a49d5702c8d4663909.tar.gz
go-tangerine-56aa24002de357c24a9644a49d5702c8d4663909.tar.zst
go-tangerine-56aa24002de357c24a9644a49d5702c8d4663909.zip
Clean up
Diffstat (limited to 'chain/block.go')
-rw-r--r--chain/block.go2
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) {