Commit 33cb9025 authored by Mark Tyneway's avatar Mark Tyneway Committed by GitHub

Merge pull request #1292 from ethereum-optimism/fix/fee-too-high-message

l2geth: fee too high error message
parents ad94fe20 75ec2869
---
'@eth-optimism/l2geth': patch
---
Return correct value in L2 Geth fee too high error message
......@@ -880,7 +880,7 @@ func (s *SyncService) verifyFee(tx *types.Transaction) error {
}
if errors.Is(err, fees.ErrFeeTooHigh) {
return fmt.Errorf("%w: %d, use less than %d * %f", fees.ErrFeeTooHigh, userFee,
expectedFee, s.feeThresholdDown)
expectedFee, s.feeThresholdUp)
}
return err
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment