From 1064f2ee1514d19c21a4748523e1b2afaa49fbce Mon Sep 17 00:00:00 2001 From: Arc <33088785+arcbtc@users.noreply.github.com> Date: Wed, 19 Aug 2020 21:17:27 +0100 Subject: [PATCH] Update services.py --- lnbits/core/services.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/lnbits/core/services.py b/lnbits/core/services.py index 9ebd4b3..6f572e0 100644 --- a/lnbits/core/services.py +++ b/lnbits/core/services.py @@ -27,7 +27,6 @@ def pay_invoice(*, wallet_id: str, bolt11: str, max_sat: Optional[int] = None) - temp_id = f"temp_{urlsafe_short_hash()}" try: invoice = bolt11_decode(bolt11) - print(invoice.payment_hash) internal = check_internal(invoice.payment_hash) if invoice.amount_msat == 0: @@ -51,7 +50,6 @@ def pay_invoice(*, wallet_id: str, bolt11: str, max_sat: Optional[int] = None) - assert wallet, "invalid wallet id" if wallet.balance_msat < 0: raise PermissionError("Insufficient balance.") - print(internal) if internal: create_payment( wallet_id=wallet_id,