From 6489db71edddb7d02d216a280abe0e07272225bb Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Fri, 12 Jun 2026 20:18:58 +0200 Subject: [PATCH] eth/fetcher: add comment --- eth/fetcher/tx_fetcher.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/eth/fetcher/tx_fetcher.go b/eth/fetcher/tx_fetcher.go index 6a43b2e238..55eef46e0c 100644 --- a/eth/fetcher/tx_fetcher.go +++ b/eth/fetcher/tx_fetcher.go @@ -379,6 +379,8 @@ func (f *TxFetcher) Enqueue(peer string, version uint, txs []*types.Transaction, poolTxs = batch } batch = append(poolTxs, blobTxs...) + + // Add regular tx to pool, blob tx to buffer. errs := append(f.addTxs(poolTxs), f.buffer.AddTx(blobTxs, peer)...) hashes := make([]common.Hash, len(batch))