From de60ff5036233448acbdcad88f7fc9918f15c506 Mon Sep 17 00:00:00 2001 From: rjl493456442 Date: Tue, 30 Sep 2025 19:47:04 +0800 Subject: [PATCH] Fix indentation and formatting in tx_fetcher.go --- eth/fetcher/tx_fetcher.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth/fetcher/tx_fetcher.go b/eth/fetcher/tx_fetcher.go index 884469d27e..7bba239034 100644 --- a/eth/fetcher/tx_fetcher.go +++ b/eth/fetcher/tx_fetcher.go @@ -376,8 +376,8 @@ 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)/4) { - time.Sleep(200 * time.Millisecond) log.Debug("Peer delivering invalid transactions", "peer", peer, "rejected", otherreject) + time.Sleep(200 * time.Millisecond) } } select {