Hotfix: Don't report failure to connect to bootstrap node due to the initial sync taking more than 30 seconds
This commit is contained in:
parent
d63e4870e6
commit
f2434139e9
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue