From 0b758ca25ad4412c5598a3edfa68b9b8626bcf49 Mon Sep 17 00:00:00 2001 From: gluax <16431709+gluax@users.noreply.github.com> Date: Fri, 3 Nov 2023 12:39:11 -0700 Subject: [PATCH] fix(scripts): fix typos & comments --- scripts/node_setup/setup_run_node.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/scripts/node_setup/setup_run_node.sh b/scripts/node_setup/setup_run_node.sh index b1441b4e..a59524fb 100644 --- a/scripts/node_setup/setup_run_node.sh +++ b/scripts/node_setup/setup_run_node.sh @@ -96,7 +96,7 @@ else echo "NOTE: This is done in the file backend..." echo "We recommend storing this somewhere secure..." output=$(create_or_import_key "$KEY_NAME" "" "") - # We greb the mnemonic from the output. + # We grab the mnemonic from the output. mnemonic=$(echo "$output" | awk '/Important/,0' | tail -n 1) # We check if the `env` file had a MNEMONIC variable in general... awk -v mnemonic="$mnemonic" 'BEGIN{OFS=FS="="} $1=="MNEMONIC"{$2=mnemonic}1' .env > .env.tmp && cat .env.tmp > .env && rm .env.tmp @@ -124,9 +124,8 @@ echo "Node Initialized !" # It creates a Client to the seda-chain network -echo "Connecting to Network `$NETWORK`..." +echo "Setting client Network to `$NETWORK`..." $BIN config node $NODE_ADDRESS -echo "Connected to network !" # Run node echo "Running Node ..."