From e565225d8edbb94b13c18b9f26378ff8d31878f1 Mon Sep 17 00:00:00 2001 From: healthykim Date: Mon, 9 Feb 2026 16:00:34 -0500 Subject: [PATCH] fix error --- core/txpool/blobpool/blobpool.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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