Skip to content

Commit

Permalink
fix wrong logic in init.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
ThanhNhann committed Apr 26, 2024
1 parent 8050f59 commit 4c5e876
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ jq --arg addr "$operator_address" '.app_state["sequencers"]["genesis_operator_ad
# Ask if to include a governor on genesis
echo "Do you want to include a governor on genesis? (Y/n) "
read -r answer
if [ "$answer" != "${answer#[Nn]}" ] ; then
if [ ! "$answer" != "${answer#[Nn]}" ] ;then
"$EXECUTABLE" gentx "$KEY_NAME_ROLLAPP" "$STAKING_AMOUNT" --chain-id "$ROLLAPP_CHAIN_ID" --keyring-backend test --home "$ROLLAPP_HOME_DIR"
"$EXECUTABLE" collect-gentxs --home "$ROLLAPP_HOME_DIR"
fi
Expand Down

0 comments on commit 4c5e876

Please sign in to comment.