From 286941154d4aef5f0683050e86848ec752d13aab Mon Sep 17 00:00:00 2001 From: squidbear <379651+czarly@users.noreply.github.com> Date: Sat, 29 Mar 2025 06:38:43 +0100 Subject: [PATCH] fix --- berachain/scripts/init.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/berachain/scripts/init.sh b/berachain/scripts/init.sh index ceae2548..54161b92 100644 --- a/berachain/scripts/init.sh +++ b/berachain/scripts/init.sh @@ -20,10 +20,10 @@ CONFIG_DIR="/root/.beacond/config" # Create config directory mkdir -p "$CONFIG_DIR" -JWTSECRET="0x$(cat /jwtsecret)" # reth and bepolia don't speak the same language +#JWTSECRET="0x$(cat /jwtsecret)" # reth and bepolia don't speak the same language P2P_STRING="tcp:\\/\\/0\\.0\\.0\\.0\\:${P2P_PORT:-55696}" -echo "$JWTSECRET" > "$CONFIG_DIR/jwt.hex" +#echo "$JWTSECRET" > "$CONFIG_DIR/jwt.hex" # this goes first because it won't overwrite shit @@ -74,7 +74,7 @@ sed -i "/^\[p2p\]/,/^\[/{s|^laddr = .*|laddr = \"$P2P_STRING\"|}" "$CONFIG_DIR/c sed -i 's|~/|/root/|g' "$CONFIG_DIR/config.toml" sed -i 's|~/|/root/|g' "$CONFIG_DIR/app.toml" -echo "$CONFIG_DIR/jwt.hex: $(cat $CONFIG_DIR/jwt.hex)" +#echo "$CONFIG_DIR/jwt.hex: $(cat $CONFIG_DIR/jwt.hex)" #cd "$CONFIG_DIR"