From 2ff606c32c577415bc527040e6ca943df66552af Mon Sep 17 00:00:00 2001 From: Nicholas Wehr Date: Thu, 21 Aug 2025 23:02:05 +0000 Subject: [PATCH] debugging host issue --- bin/reth/src/share_blocks.rs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/bin/reth/src/share_blocks.rs b/bin/reth/src/share_blocks.rs index ba7454922..3b0a6b9fd 100644 --- a/bin/reth/src/share_blocks.rs +++ b/bin/reth/src/share_blocks.rs @@ -91,8 +91,12 @@ where Some(NetworkEvent::ActivePeerSession { info, .. }) => { let ip = info.remote_addr.ip(); // skip unusable/self - if ip.is_unspecified() || ip == self_ip { - debug!(%ip, "hlfs: skip self/unspecified"); + if ip.is_unspecified() { + debug!(%ip, "hlfs: skip unspecified"); + continue; + } + if ip == self_ip { + debug!(%ip, "hlfs: skip self"); continue; } let addr = SocketAddr::new(info.remote_addr.ip(), hlfs_port);