diff --git a/core/txpool/blobpool/blobpool.go b/core/txpool/blobpool/blobpool.go index 1a3dca0226..d02ac6011a 100644 --- a/core/txpool/blobpool/blobpool.go +++ b/core/txpool/blobpool/blobpool.go @@ -1673,7 +1673,7 @@ func (p *BlobPool) addLocked(tx *types.Transaction, checkGapped bool) (err error p.drop() } // If the transaction being added is dropped from above, return underpriced error - if p.lookup.exists(tx.Hash()) { + if !p.lookup.exists(tx.Hash()) { log.Trace("Dropping underpriced transaction", "hash", tx.Hash(), "err", err) addUnderpricedMeter.Mark(1) return txpool.ErrUnderpriced