From ff665b4e3778c1a8e5a1f1f05b9624d3ee1a30ae Mon Sep 17 00:00:00 2001 From: Sina M <1591639+s1na@users.noreply.github.com> Date: Wed, 13 May 2026 21:12:09 +0200 Subject: [PATCH] Apply suggestion from @s1na --- core/txpool/blobpool/blobpool.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core/txpool/blobpool/blobpool.go b/core/txpool/blobpool/blobpool.go index c52c091bd1..3b2bc03422 100644 --- a/core/txpool/blobpool/blobpool.go +++ b/core/txpool/blobpool/blobpool.go @@ -1576,8 +1576,7 @@ func (p *BlobPool) Get(hash common.Hash) *types.Transaction { func (p *BlobPool) GetRLP(hash common.Hash) []byte { data := p.getRLP(hash) if len(data) == 0 { - // Not in this pool. The TxPool aggregator probes every subpool, so - // this is the common case for any non-blob hash; do not log. + // Not in this pool, do not log. return nil } rlp, err := encodeForNetwork(data)