From 08ce034e06ecdcc2885e3f5ecf721cf6df6caddd Mon Sep 17 00:00:00 2001 From: Alex Date: Fri, 1 Nov 2024 13:27:41 +0200 Subject: [PATCH] fix: update nethermind config option (#824) Fixes config file name for Nethermind: - All *.cfg files were renamed to *.json as part of this PR: https://github.com/NethermindEth/nethermind/pull/7653 - Skipping file extension will automatically add a proper one Signed-off-by: Alex --- src/el/nethermind/nethermind_launcher.star | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/el/nethermind/nethermind_launcher.star b/src/el/nethermind/nethermind_launcher.star index 41c422c06..4b8185987 100644 --- a/src/el/nethermind/nethermind_launcher.star +++ b/src/el/nethermind/nethermind_launcher.star @@ -159,7 +159,7 @@ def get_config( cmd.append("--config=" + launcher.network.split("-")[0]) cmd.append("--Init.BaseDbPath=" + launcher.network.split("-")[0]) elif launcher.network not in constants.PUBLIC_NETWORKS: - cmd.append("--config=none.cfg") + cmd.append("--config=none") cmd.append( "--Init.ChainSpecPath=" + constants.GENESIS_CONFIG_MOUNT_PATH_ON_CONTAINER