mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-24 16:59:26 +00:00
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. |
||
|---|---|---|
| .. | ||
| blobpool.go | ||
| blobpool_test.go | ||
| config.go | ||
| evictheap.go | ||
| evictheap_test.go | ||
| interface.go | ||
| limbo.go | ||
| lookup.go | ||
| metrics.go | ||
| priority.go | ||
| priority_test.go | ||
| slotter.go | ||
| slotter_test.go | ||