diff --git a/beacon_chain/eth2_network.nim b/beacon_chain/eth2_network.nim index e2ec61eca..9fff9afb0 100644 --- a/beacon_chain/eth2_network.nim +++ b/beacon_chain/eth2_network.nim @@ -947,7 +947,9 @@ proc connectToNetwork*(node: Eth2Node, fatal "Failed to connect to any bootstrap node. Quitting", bootstrapEnrs quit 1 - traceAsyncErrors checkIfConnectedToBootstrapNode() + # TODO: The initial sync forces this to time out. + # Revisit when the new Sync manager is integrated. + # traceAsyncErrors checkIfConnectedToBootstrapNode() func peersCount*(node: Eth2Node): int = len(node.peerPool)