Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Anmol1696 committed Dec 28, 2023
1 parent 87e7f37 commit 11dd975
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions charts/devnet/scripts/default/create-validator.sh
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,10 @@ function cosmos-sdk-version-v50() {
function cosmos-sdk-version-default() {
# Run create validator tx command
echo "Running txn for create-validator"
args=""
args=''
if [[ $($CHAIN_BIN tx staking create-validator --help | grep -c "min-self-delegation") -gt 0 ]];
then
args+="--min-self-delegation=\"1000000\""
args+='--min-self-delegation=1000000'
fi
$CHAIN_BIN tx staking create-validator \
--node $NODE_URL \
Expand Down

0 comments on commit 11dd975

Please sign in to comment.