refix comment

This commit is contained in:
Alexander 2024-07-12 06:56:54 -04:00
parent b70d41fdba
commit 5e7b4283fc

View file

@ -31,7 +31,7 @@ while True:
# send pls back to wallet a for buying # send pls back to wallet a for buying
pls_balance = get_pls_balance(account.address, False) pls_balance = get_pls_balance(account.address, False)
pls_balance -= wallet_min_pls pls_balance -= wallet_min_pls
# send the minter 1/3 # send the minter 1/4
send_to_wallet_b = float(round(pls_balance / 4, 2)) send_to_wallet_b = float(round(pls_balance / 4, 2))
# send the rest to buyer # send the rest to buyer
send_to_wallet_a = float(round(pls_balance - send_to_wallet_b, 2)) send_to_wallet_a = float(round(pls_balance - send_to_wallet_b, 2))