Skip to content

Commit

Permalink
miner: fix reply -> replay typo (#27961)
Browse files Browse the repository at this point in the history
* typo: reply -> replay

* rebuild
  • Loading branch information
shuoli84 authored Aug 22, 2023
1 parent 7c0d90c commit bbee0e7
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 @@ -789,7 +789,7 @@ func (w *worker) commitTransactions(env *environment, txs *transactionsByPriceAn
// Check whether the tx is replay protected. If we're not in the EIP155 hf
// phase, start ignoring the sender until we do.
if tx.Protected() && !w.chainConfig.IsEIP155(env.header.Number) {
log.Trace("Ignoring reply protected transaction", "hash", tx.Hash(), "eip155", w.chainConfig.EIP155Block)
log.Trace("Ignoring replay protected transaction", "hash", tx.Hash(), "eip155", w.chainConfig.EIP155Block)
txs.Pop()
continue
}
Expand Down

0 comments on commit bbee0e7

Please sign in to comment.