commit b3d5a3871eb209361e45e9b4d4b630b478ba9947 parent 6d42abd6c8134b8d097bb5f118c3d0d00f919596 Author: NicholasFarrow <nicholas.w.farrow@gmail.com> Date: Sun, 17 Jan 2021 02:36:38 +1100 fix key error bug Diffstat:
M | server.py | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/server.py b/server.py @@ -65,7 +65,7 @@ def make_payment(payload): label = "undefined" # Initialise this payment - payment = create_invoice(amount, "USD", payload['id']) + payment = create_invoice(amount, "USD", label) process_payment(payment)