commit 803fdec5f0c77389d55bda6e5118daafb213ec95
parent f03cdd56f09a6ded3b6966b499e65326e4818976
Author: NicholasFarrow <nicholas.w.farrow@gmail.com>
Date: Thu, 21 Jan 2021 00:23:31 +1100
Fix debugging line
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/server.py b/server.py
@@ -155,7 +155,7 @@ def process_payment(payment):
print()
print(payment.__dict__)
- if True: #payment.confirmed_paid > payment.value:
+ if payment.confirmed_paid > payment.value:
payment.paid = True
payment.time_left = 0
payment.status = "Payment successful! {} BTC".format(payment.confirmed_paid)