Skip to content

Commit

Permalink
fix: faucet delegate gives 62BLD, 93RUN
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelfig committed Apr 21, 2021
1 parent 0557983 commit 4b80400
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ thisdir=$(dirname -- "$0")
FAUCET_HOME=$thisdir/../faucet

MAX_LINES=-1
STAKE=50000000ubld
DELEGATE_COINS=62000000ubld,93000000urun

OP=$1
shift
Expand Down Expand Up @@ -67,10 +67,10 @@ while [[ ${#rpcAddrs[@]} -gt 0 ]]; do
tx bank send \
--node=tcp://$selected --chain-id=$chainName --keyring-backend=test \
--yes --gas=auto --gas-adjustment=1.2 --broadcast-mode=block \
-- faucet "$ADDR" "$STAKE"; then
-- faucet "$ADDR" "$DELEGATE_COINS"; then
# Record the information before exiting.
sed -i -e "/:$NAME$/d" $thisdir/cosmos-delegates.txt
echo "$ADDR:$STAKE:$NAME" >> $thisdir/cosmos-delegates.txt
echo "$ADDR:$DELEGATE_COINS:$NAME" >> $thisdir/cosmos-delegates.txt
exit 0
fi
;;
Expand Down

0 comments on commit 4b80400

Please sign in to comment.