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