Skip to content

Commit 4b80400

Browse files
committed
fix: faucet delegate gives 62BLD, 93RUN
1 parent 0557983 commit 4b80400

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/deployment/ansible/roles/cosmos-genesis/files/faucet-helper.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ thisdir=$(dirname -- "$0")
55
FAUCET_HOME=$thisdir/../faucet
66

77
MAX_LINES=-1
8-
STAKE=50000000ubld
8+
DELEGATE_COINS=62000000ubld,93000000urun
99

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

0 commit comments

Comments
 (0)