fix log message

Signed-off-by: Csaba Kiraly <csaba.kiraly@gmail.com>
This commit is contained in:
Csaba Kiraly 2025-12-29 15:19:48 +01:00
parent f8d5d10c0c
commit b30e6728db
No known key found for this signature in database
GPG key ID: 0FE274EE8C95166E

View file

@ -376,7 +376,7 @@ func (f *TxFetcher) Enqueue(peer string, txs []*types.Transaction, direct bool)
// If 'other reject' is >25% of the deliveries in any batch, sleep a bit.
if otherreject > int64((len(batch)+3)/4) {
log.Debug("Peer delivering invalid transactions", "peer", peer, "rejected", otherreject)
log.Debug("Peer delivering stale or invalid transactions", "peer", peer, "rejected", otherreject)
time.Sleep(200 * time.Millisecond)
}
}