From af13f1b8a9b2b1d025fb938e48f077231af867f9 Mon Sep 17 00:00:00 2001 From: Eitan Seri-Levi Date: Mon, 25 May 2026 23:20:14 +0300 Subject: [PATCH] do not penalize --- beacon_node/lighthouse_network/src/peer_manager/mod.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/beacon_node/lighthouse_network/src/peer_manager/mod.rs b/beacon_node/lighthouse_network/src/peer_manager/mod.rs index 6b5144fa6f..9285e0ba13 100644 --- a/beacon_node/lighthouse_network/src/peer_manager/mod.rs +++ b/beacon_node/lighthouse_network/src/peer_manager/mod.rs @@ -556,7 +556,9 @@ impl PeerManager { // Don't ban on this because we want to retry with a block by root request. if matches!( protocol, - Protocol::BlobsByRoot | Protocol::DataColumnsByRoot + Protocol::BlobsByRoot + | Protocol::DataColumnsByRoot + | Protocol::DataColumnsByRange ) { return; }