Dboreham/mainnet eth #464

Merged
telackey merged 17 commits from dboreham/mainnet-eth into main 2023-07-25 16:16:19 +00:00
3 changed files with 3 additions and 3 deletions
Showing only changes of commit af6d755036 - Show all commits

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh
if [[ -n "$CERC_SCRIPT_DEBUG" ]]; then
set -x
fi

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh
if [[ -n "$CERC_SCRIPT_DEBUG" ]]; then
set -x
fi

View File

@ -25,7 +25,7 @@ def setup(ctx):
def create(ctx):
# Generate the JWT secret and save to its config file
secret = token_hex(16)
secret = token_hex(32)
jwt_file_path = ctx.deployment_dir.joinpath("data", "mainnet_eth_config_data", "jwtsecret")
with open(jwt_file_path, 'w+') as jwt_file:
jwt_file.write(secret)