Commit graph

1 commit

Author SHA1 Message Date
Charles Dusek
0ab8bf0cd3 core/txpool/blobpool: implement ContentFrom for blob transactions
Implement BlobPool.ContentFrom which was previously stubbed to return
empty results. The method now returns blob transactions for a given
address with blob sidecars stripped to avoid excessive data transfer.
Blob versioned hashes remain available on the returned transactions.

Pending transactions are resolved from the on-disk store via the
in-memory index, while gapped (queued) transactions are returned
from the in-memory reorder buffer. The per-account bound of 16
transactions (maxTxsPerAccount) keeps the disk read cost trivial,
unlike Content() which would need to load all accounts.

Fixes #31977
2026-03-27 00:28:21 -05:00