Skip to content

Commit

Permalink
fix invalid receipt root hash issue
Browse files Browse the repository at this point in the history
  • Loading branch information
unclezoro committed Nov 3, 2021
1 parent 6c8039a commit 8317936
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 8317936

Please sign in to comment.