mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-18 19:00:46 +00:00
eth: sync blob transactions to new peers on connection
This commit is contained in:
parent
a4b3898f90
commit
c9c831277d
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue