Apply suggestion from @s1na

This commit is contained in:
Sina M 2026-05-13 21:12:09 +02:00 committed by GitHub
parent 6abf72e5bb
commit ff665b4e37
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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)