Skip to content

Commit

Permalink
fix: comment -new
Browse files Browse the repository at this point in the history
  • Loading branch information
tomjohnburton committed Sep 21, 2023
1 parent c5439ad commit a25f7c5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ci/scripts/create_chainspec.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,10 @@ def main():
bootnodes = get_file_content(bootnodes_filename)

chainspec_filename = os.path.join(CHAINSPECS_BASE_PATH, f"{network}.chainspec.json")
generate_chainspec_command = [binary, "build-spec", "--chain", network + "-new", "--disable-default-bootnode"]

generate_chainspec_command = [binary, "build-spec", "--chain", network, "--disable-default-bootnode"]
# TODO: Uncomment this line before merging
# generate_chainspec_command = [binary, "build-spec", "--chain", network + "-new", "--disable-default-bootnode"]

with open(chainspec_filename, "w") as chainspec:
subprocess.call(generate_chainspec_command, stdout=chainspec)
Expand Down

0 comments on commit a25f7c5

Please sign in to comment.