Skip to content

Commit

Permalink
eth/fetcher: fix log
Browse files Browse the repository at this point in the history
  • Loading branch information
holiman committed Aug 19, 2022
1 parent fd88ae7 commit 5aa9c1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eth/fetcher/tx_fetcher.go
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ func (f *TxFetcher) Enqueue(peer string, txs []*types.Transaction, direct bool)
// out of sync with the chain or the peer is griefing us.
if otherreject > 128/4 {
delay = 200 * time.Millisecond
log.Warn("Peer delivering useless transactions", "ignored", len(txs)-end, "peer", peer)
log.Warn("Peer delivering useless transactions", "peer", peer, "ignored", len(txs)-end)
break
}
}
Expand Down

0 comments on commit 5aa9c1c

Please sign in to comment.