diff --git a/src/common/startup_check.py b/src/common/startup_check.py index 2d67eb85..c1116ff1 100644 --- a/src/common/startup_check.py +++ b/src/common/startup_check.py @@ -263,6 +263,9 @@ async def startup_checks() -> None: async def _check_consensus_nodes_network() -> None: + """ + Checks that consensus node network is the same as settings.network + """ chain_id_to_network = get_chain_id_to_network_dict() for consensus_endpoint in settings.consensus_endpoints: consensus_client = get_consensus_client([consensus_endpoint]) @@ -277,6 +280,9 @@ async def _check_consensus_nodes_network() -> None: async def _check_execution_nodes_network() -> None: + """ + Checks that execution node network is the same as settings.network + """ chain_id_to_network = get_chain_id_to_network_dict() for execution_endpoint in settings.execution_endpoints: execution_client = get_execution_client(