Skip to content

Commit

Permalink
Merge pull request bnb-chain#10 from binance-chain/invalid_receipt_hash
Browse files Browse the repository at this point in the history
[R4R]fix invalid receipt root hash issue
  • Loading branch information
unclezoro authored Nov 3, 2021
2 parents 6c8039a + 8317936 commit fa30a6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion miner/worker.go
Original file line number Diff line number Diff line change
Expand Up @@ -1295,7 +1295,7 @@ func (w *worker) commitBundle(txs types.Transactions, coinbase common.Address, i
// Start executing the transaction
w.current.state.Prepare(tx.Hash(), common.Hash{}, w.current.tcount)

logs, err := w.commitTransaction(tx, coinbase)
logs, err := w.commitTransaction(tx, coinbase, core.NewReceiptBloomGenerator())
switch err {
case core.ErrGasLimitReached:
// Pop the current out-of-gas transaction without shifting in the next from the account
Expand Down

0 comments on commit fa30a6e

Please sign in to comment.