Skip to content

Commit

Permalink
update faucet amounts (#541)
Browse files Browse the repository at this point in the history
  • Loading branch information
Anmol1696 committed Jul 31, 2024
1 parent 6bb8fbb commit dfa32fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions starship/charts/devnet/templates/chains/cosmos/genesis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -348,11 +348,11 @@ spec:
amt="${coin//[!0-9]/}"
if [ ${#amt} -gt 18 ]; then
creditAmt=$(echo $amt | sed -e "s/000000000$//")
creditAmt=$(echo $amt | sed -e "s/000000$//")
feesAmt=$(echo $amt | sed -e "s/0000000000000$//")
else
creditAmt=$(echo $amt | sed -e "s/0000$//")
feesAmt=$(echo $amt | sed -e "s/000000$//")
feesAmt=$(echo $amt | sed -e "s/00000000$//")
fi
export $var="$creditAmt"
Expand Down

0 comments on commit dfa32fb

Please sign in to comment.