From de78614d82684c5d34ca7ad8240b4a83ca69d33c Mon Sep 17 00:00:00 2001 From: Alexander Date: Mon, 22 Jul 2024 16:11:57 -0400 Subject: [PATCH] fixed minimum pulse required to send from seller --- bot-seller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot-seller.py b/bot-seller.py index d2ef169..c506afc 100755 --- a/bot-seller.py +++ b/bot-seller.py @@ -40,7 +40,7 @@ while True: send_to_wallet_b = float(round(pls_balance / 4, 2)) # send the rest to buyer send_to_wallet_a = float(round(pls_balance - send_to_wallet_b, 2)) - if pls_balance > wallet_min_pls: + if pls_balance > 0: # send pls to wallet a if send_pls(account, wallet_a_address, send_to_wallet_a): logging.info("Sent {} PLS to {}".format(send_to_wallet_a, wallet_a_address))