From c9c831277dec7fc6cc6348441e3791c2634db3fd Mon Sep 17 00:00:00 2001 From: MozirDmitriy Date: Tue, 17 Feb 2026 16:25:06 +0300 Subject: [PATCH] eth: sync blob transactions to new peers on connection --- eth/sync.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth/sync.go b/eth/sync.go index ddae8443a3..9c471bd35f 100644 --- a/eth/sync.go +++ b/eth/sync.go @@ -25,7 +25,7 @@ import ( // syncTransactions starts sending all currently pending transactions to the given peer. func (h *handler) syncTransactions(p *eth.Peer) { var hashes []common.Hash - for _, batch := range h.txpool.Pending(txpool.PendingFilter{BlobTxs: false}) { + for _, batch := range h.txpool.Pending(txpool.PendingFilter{}) { for _, tx := range batch { hashes = append(hashes, tx.Hash) }