diff options
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) { |