returnfmt.Errorf("%w: new tx gas fee cap %v <= %v queued + %d%% replacement penalty",txpool.ErrReplaceUnderpriced,tx.GasFeeCap(),prev.execFeeCap,p.config.PriceBump)
returnfmt.Errorf("%w: new tx gas fee cap %v < %v queued + %d%% replacement penalty",txpool.ErrReplaceUnderpriced,tx.GasFeeCap(),prev.execFeeCap,p.config.PriceBump)
casetx.GasTipCapIntCmp(minGasTipCap.ToBig())<0:
casetx.GasTipCapIntCmp(minGasTipCap.ToBig())<0:
returnfmt.Errorf("%w: new tx gas tip cap %v <= %v queued + %d%% replacement penalty",txpool.ErrReplaceUnderpriced,tx.GasTipCap(),prev.execTipCap,p.config.PriceBump)
returnfmt.Errorf("%w: new tx gas tip cap %v < %v queued + %d%% replacement penalty",txpool.ErrReplaceUnderpriced,tx.GasTipCap(),prev.execTipCap,p.config.PriceBump)
returnfmt.Errorf("%w: new tx blob gas fee cap %v <= %v queued + %d%% replacement penalty",txpool.ErrReplaceUnderpriced,tx.BlobGasFeeCap(),prev.blobFeeCap,p.config.PriceBump)
returnfmt.Errorf("%w: new tx blob gas fee cap %v < %v queued + %d%% replacement penalty",txpool.ErrReplaceUnderpriced,tx.BlobGasFeeCap(),prev.blobFeeCap,p.config.PriceBump)