miner: fix reply -> replay typo (#27961)

* typo: reply -> replay

* rebuild
pull/27966/head
shuo 1 year ago committed by GitHub
parent 7c0d90c8c9
commit bbee0e7e50
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      miner/worker.go

@ -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
}

Loading…
Cancel
Save