From 849097ea3468318ec1af33672add8f7a2ab01fc2 Mon Sep 17 00:00:00 2001 From: Christina <156356273+cratiu222@users.noreply.github.com> Date: Fri, 28 Jun 2024 16:52:32 +0300 Subject: [PATCH] fix fetchers_concurrent.go --- eth/downloader/fetchers_concurrent.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth/downloader/fetchers_concurrent.go b/eth/downloader/fetchers_concurrent.go index 9d8cd114c1..5d822eb03f 100644 --- a/eth/downloader/fetchers_concurrent.go +++ b/eth/downloader/fetchers_concurrent.go @@ -115,7 +115,7 @@ func (d *Downloader) concurrentFetch(queue typedQueue) error { req.Close() } }() - // Subscribe to peer lifecycle events to schedule tasks to new joiners and + // Subscribe to peer lifecycle events to schedule tasks for new joiners and // reschedule tasks upon disconnections. We don't care which event happened // for simplicity, so just use a single channel. peering := make(chan *peeringEvent, 64) // arbitrary buffer, just some burst protection