From e24f6c93d90387c7c17071add448fbdb1e307147 Mon Sep 17 00:00:00 2001 From: Diva M Date: Thu, 22 Dec 2022 17:38:16 -0500 Subject: [PATCH] fix ctrl c'd comment --- beacon_node/network/src/sync/manager.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/beacon_node/network/src/sync/manager.rs b/beacon_node/network/src/sync/manager.rs index 155e2d213..f003ca27e 100644 --- a/beacon_node/network/src/sync/manager.rs +++ b/beacon_node/network/src/sync/manager.rs @@ -827,10 +827,10 @@ impl SyncManager { } } Err(e) => { - // inform backfill that the request needs to be treated as failed + // inform range that the request needs to be treated as failed // With time we will want to downgrade this log warn!( - self.log, "Blocks and blobs request for backfill received invalid data"; + self.log, "Blocks and blobs request for range received invalid data"; "peer_id" => %peer_id, "batch_id" => batch_id, "error" => e ); // TODO: penalize the peer for being a bad boy