Skip to content

Commit 08ce034

Browse files
authored
fix: update nethermind config option (ethereum#824)
Fixes config file name for Nethermind: - All *.cfg files were renamed to *.json as part of this PR: NethermindEth/nethermind#7653 - Skipping file extension will automatically add a proper one Signed-off-by: Alex <[email protected]>
1 parent 968cfbd commit 08ce034

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/el/nethermind/nethermind_launcher.star

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ def get_config(
159159
cmd.append("--config=" + launcher.network.split("-")[0])
160160
cmd.append("--Init.BaseDbPath=" + launcher.network.split("-")[0])
161161
elif launcher.network not in constants.PUBLIC_NETWORKS:
162-
cmd.append("--config=none.cfg")
162+
cmd.append("--config=none")
163163
cmd.append(
164164
"--Init.ChainSpecPath="
165165
+ constants.GENESIS_CONFIG_MOUNT_PATH_ON_CONTAINER

0 commit comments

Comments
 (0)