eth/fetcher: add comment

This commit is contained in:
Felix Lange 2026-06-12 20:18:58 +02:00
parent 63fe3ff7ff
commit 6489db71ed

View file

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