go-ethereum/core/txpool/blobpool
Sina Mahmoodi 6abf72e5bb core/txpool/blobpool: silence GetRLP miss-log spam
BlobPool.GetRLP runs encodeForNetwork on whatever getRLP returns. On a
miss getRLP returns an empty slice; encodeForNetwork then errors with
"invalid blobTxForPool RLP: unexpected EOF" and the error path logs at
ERROR level.

Because TxPool.GetRLP probes every subpool in order, every legacy-tx
hash query hits the blob pool first and triggers this log line. On a
busy node this floods the logs.

Short-circuit when getRLP returns empty: that is the documented "not in
this pool" condition, mirroring what BlobPool.Get already does.
2026-05-13 19:02:53 +00:00
..
blobpool.go core/txpool/blobpool: silence GetRLP miss-log spam 2026-05-13 19:02:53 +00:00
blobpool_test.go core/txpool/blobpool: add blobTxForPool type (#34882) 2026-05-12 13:59:33 +02:00
config.go core/txpool/blobpool: reduce default database cap for rollout (#29090) 2024-02-26 14:27:56 +02:00
evictheap.go core/txpool/blobpool: delay announcement of low fee txs (#33893) 2026-03-02 23:59:33 +01:00
evictheap_test.go core/txpool/blobpool: delay announcement of low fee txs (#33893) 2026-03-02 23:59:33 +01:00
interface.go cmd, core, trie, triedb: split CachingDB into merkle + binary dbs. (#34700) 2026-04-17 08:55:54 +08:00
limbo.go core/txpool/blobpool: add blobTxForPool type (#34882) 2026-05-12 13:59:33 +02:00
lookup.go core/txpool/blobpool: remove legacy sidecar conversion (#33352) 2025-12-18 12:33:07 -07:00
metrics.go core/txpool/blobpool: fix gapped queue size cap (#34831) 2026-05-02 13:29:21 +02:00
priority.go core/txpool/blobpool: delay announcement of low fee txs (#33893) 2026-03-02 23:59:33 +01:00
priority_test.go core/txpool/blobpool: delay announcement of low fee txs (#33893) 2026-03-02 23:59:33 +01:00
slotter.go core/txpool/blobpool: fix slotter size limit (#33474) 2025-12-24 09:44:17 +08:00
slotter_test.go core/txpool/blobpool: migrate billy to new slot size (#31966) 2025-09-15 21:34:57 +08:00