diff --git a/txpool/pool.go b/txpool/pool.go index d2ab11a01..cfd593794 100644 --- a/txpool/pool.go +++ b/txpool/pool.go @@ -1283,7 +1283,7 @@ func (p *TxPool) addLocked(mt *metaTx, announcements *types.Announcements) txpoo } // Don't add blob tx to queued if it's less than current pending blob base fee - if mt.Tx.Type == types.BlobTxType && mt.Tx.BlobFeeCap.Uint64() < p.pendingBlobFee.Load() { + if mt.Tx.Type == types.BlobTxType && mt.Tx.BlobFeeCap.LtUint64(p.pendingBlobFee.Load()) { return txpoolcfg.FeeTooLow }