File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -362,16 +362,16 @@ get_account_balance() {
362
362
echo " $balance "
363
363
}
364
364
365
- busy_wait_until_balance_is_1_voi () {
365
+ busy_wait_until_balance_is_sufficient () {
366
366
local balance
367
- display_banner " Waiting for balance (account: ${account_addr} ) to be 1 Voi"
367
+ display_banner " Waiting for balance (account: ${account_addr} ) to be 0.001 Voi"
368
368
balance=$( get_account_balance " ${account_addr} " )
369
- while [[ ${balance} -lt " 1000000 " ]]; do
370
- echo " Waiting for balance to be 1 Voi at minimum"
369
+ while [[ ${balance} -lt " 1000 " ]]; do
370
+ echo " Waiting for balance to be 0.001 Voi at minimum"
371
371
balance=$( get_account_balance " ${account_addr} " )
372
372
sleep 10
373
373
done
374
- display_banner " Account has balance of 1 Voi or greater! "
374
+ display_banner " Account has balance of 0.001 Voi or greater! "
375
375
}
376
376
377
377
get_account_info() {
@@ -680,7 +680,7 @@ join_as_new_user() {
680
680
681
681
generate_participation_key
682
682
683
- busy_wait_until_balance_is_1_voi
683
+ busy_wait_until_balance_is_sufficient
684
684
685
685
change_account_online_status " ${account} "
686
686
You can’t perform that action at this time.
0 commit comments