Skip to content

Commit 16d828f

Browse files
authored
Update nethermind-entrypoint
1 parent f496431 commit 16d828f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

nethermind/nethermind-entrypoint

+3-2
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,14 @@ fi
2323

2424
# Create necessary directories
2525
mkdir -p "$NETHERMIND_DATA_DIR"
26+
mkdir -p "$(dirname "$JWT_SECRET_FILE")"
2627

2728
# Write the JWT secret
2829
if [[ -z "$OP_NODE_L2_ENGINE_AUTH_RAW" ]]; then
2930
echo "Expected OP_NODE_L2_ENGINE_AUTH_RAW to be set" 1>&2
3031
exit 1
3132
fi
32-
echo "$OP_NODE_L2_ENGINE_AUTH_RAW" > "$OP_NODE_L2_ENGINE_AUTH"
33+
echo "$OP_NODE_L2_ENGINE_AUTH_RAW" > "$JWT_SECRET_FILE"
3334

3435
# Additional arguments based on environment variables
3536
if [ "${OP_NETHERMIND_BOOTNODES+x}" = x ]; then
@@ -54,7 +55,7 @@ exec ./nethermind \
5455
--JsonRpc.Host=0.0.0.0 \
5556
--JsonRpc.WebSocketsPort="$WS_PORT" \
5657
--JsonRpc.Port="$RPC_PORT" \
57-
--JsonRpc.JwtSecretFile="$OP_NODE_L2_ENGINE_AUTH" \
58+
--JsonRpc.JwtSecretFile="$JWT_SECRET_FILE" \
5859
--JsonRpc.EngineHost=0.0.0.0 \
5960
--JsonRpc.EnginePort="$AUTHRPC_PORT" \
6061
--HealthChecks.Enabled=true \

0 commit comments

Comments
 (0)