From 80a7b2a27f4ac87bb72cc4fefe5b7271edbdd6ff Mon Sep 17 00:00:00 2001 From: Eitan Seri-Levi Date: Wed, 3 Jun 2026 10:18:33 +0300 Subject: [PATCH] Fix --- 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; }