From 941fae062dbcd9ad6aeb18a21f7e8704fa9edce2 Mon Sep 17 00:00:00 2001 From: Tobi Okedeji Date: Thu, 15 Aug 2024 20:44:26 +0100 Subject: [PATCH] fix typo on l1_node --- docker-compose.yaml | 6 +++--- scripts/l1_node.sh | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docker-compose.yaml b/docker-compose.yaml index ff29cd307..887d84f2d 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -8,9 +8,9 @@ services: - MONIKER=sample_validator - APP_HOME=/data - HOME=/data - - STATE_SYNC_RPC1=https://allora-rpc.testnet-1.testnet.allora.network:443 - - STATE_SYNC_RPC2=https://allora-rpc.testnet-1.testnet.allora.network:443 - - UPGRADE=false # set this to true for chain upgrade runs + # - STATE_SYNC_RPC1=https://allora-rpc.testnet-1.testnet.allora.network:443 + # - STATE_SYNC_RPC2=https://allora-rpc.testnet-1.testnet.allora.network:443 + - UPGRADE=true # set this to true for chain upgrade runs volumes: - ./data:/data - ./scripts/:/scripts diff --git a/scripts/l1_node.sh b/scripts/l1_node.sh index 44c485e89..a4d9e88b3 100755 --- a/scripts/l1_node.sh +++ b/scripts/l1_node.sh @@ -22,7 +22,7 @@ fi BINARY="" if [ "$UPGRADE" == "true" ]; then - echo "You have set upgrade to true, please make sure you are running the correct docker image (vx.x.x-upgrader) + echo "You have set upgrade to true, please make sure you are running the correct docker image (vx.x.x-upgrader)" BINARY=/cosmovisor/genesis/bin/allorad else BINARY=allorad @@ -112,4 +112,4 @@ else --rpc.laddr=tcp://0.0.0.0:26657 \ --p2p.seeds=$SEEDS \ --p2p.persistent_peers $PEERS -fi \ No newline at end of file +fi