From 7faec9b7a3db8ac387bbe914edea1d4dcfe76616 Mon Sep 17 00:00:00 2001 From: Agnish Ghosh Date: Tue, 23 Jul 2024 16:42:36 +0530 Subject: [PATCH] nits --- beacon_chain/sync/sync_manager.nim | 3 --- 1 file changed, 3 deletions(-) diff --git a/beacon_chain/sync/sync_manager.nim b/beacon_chain/sync/sync_manager.nim index fadec6318..1188109e4 100644 --- a/beacon_chain/sync/sync_manager.nim +++ b/beacon_chain/sync/sync_manager.nim @@ -372,7 +372,6 @@ proc checkValidPeerCustody*[A, B](man: SyncManager[A, B], peer: A): bool = var validPeerIds: seq[PeerId] - # Get the custody subnet counts of the remote peer let remoteCustodySubnetCount = peer.fetchCustodyColumnCountFromRemotePeer() @@ -400,8 +399,6 @@ proc checkValidPeerCustody*[A, B](man: SyncManager[A, B], peer: A): bool = # Otherwise add the peer to the set # of valid peerIds - # validPeerIds.add(peer.peerId) - # validPeerIds true proc syncStep[A, B](man: SyncManager[A, B], index: int, peer: A)