mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-03 02:23:48 +00:00
fix(txpool): fix the unit in a log (#266)
This commit is contained in:
parent
a29520e066
commit
9594e0a6a8
1 changed files with 1 additions and 1 deletions
|
|
@ -107,7 +107,7 @@ func ValidateTransaction(tx *types.Transaction, head *types.Header, signer types
|
|||
log.Error("Failed to parse TAIKO_MIN_TIP", "err", err)
|
||||
} else {
|
||||
if tx.GasTipCapIntCmp(new(big.Int).SetUint64(uint64(minTip))) < 0 {
|
||||
return fmt.Errorf("max fee per gas is less than %d Gwei", minTip)
|
||||
return fmt.Errorf("max fee per gas is less than %d wei", minTip)
|
||||
}
|
||||
}
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Reference in a new issue