From ca028c8ee14720337b81835d0e39c583fc4d5e55 Mon Sep 17 00:00:00 2001 From: maskpp Date: Sun, 10 Aug 2025 21:12:55 +0800 Subject: [PATCH] update comment --- core/txpool/blobpool/blobpool.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/txpool/blobpool/blobpool.go b/core/txpool/blobpool/blobpool.go index dd76546659..81a18e5ac3 100644 --- a/core/txpool/blobpool/blobpool.go +++ b/core/txpool/blobpool/blobpool.go @@ -620,7 +620,7 @@ func (p *BlobPool) recheck(addr common.Address, inclusions map[common.Hash]uint6 p.lookup.untrack(txs[i]) if filled && inclusions != nil { - // If the tx metadata is recorded by limbo, we don't need to delete the tx from db. + // If the tx metadata is recorded by limbo, keep the tx in the db. if p.offload(addr, txs[i], inclusions) { ids = ids[:len(ids)-1] } @@ -664,7 +664,7 @@ func (p *BlobPool) recheck(addr common.Address, inclusions map[common.Hash]uint6 // Included transactions blobs need to be moved to the limbo if inclusions != nil { - // If the tx metadata is recorded by limbo, we don't need to delete the tx from db. + // If the tx metadata is recorded by limbo, keep the tx in the db. if p.offload(addr, txs[0], inclusions) { ids = ids[:len(ids)-1] }