Skip to content

Commit

Permalink
fix: update nethermind config option (#824)
Browse files Browse the repository at this point in the history
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 <alexb5dh@gmail.com>
  • Loading branch information
alexb5dh authored Nov 1, 2024
1 parent 968cfbd commit 08ce034
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/el/nethermind/nethermind_launcher.star
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 08ce034

Please sign in to comment.