From d75c69cd10511b7aab7ce9afb726fb22553d327d Mon Sep 17 00:00:00 2001 From: benarc Date: Sun, 8 Nov 2020 23:15:27 +0000 Subject: [PATCH] fixed first opennode bug Opennode funding source isnt working, there are a few bugs. This fixes the first --- lnbits/wallets/opennode.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lnbits/wallets/opennode.py b/lnbits/wallets/opennode.py index 131bcf379..49aa0aae4 100644 --- a/lnbits/wallets/opennode.py +++ b/lnbits/wallets/opennode.py @@ -19,7 +19,7 @@ class OpenNodeWallet(Wallet): key = getenv("OPENNODE_KEY") or getenv("OPENNODE_ADMIN_KEY") or getenv("OPENNODE_INVOICE_KEY") self.auth = {"Authorization": key} - + def status(self) -> StatusResponse: try: r = httpx.get( @@ -30,7 +30,7 @@ class OpenNodeWallet(Wallet): except (httpx.ConnectError, httpx.RequestError): return StatusResponse(f"Unable to connect to '{self.endpoint}'", 0) - data = r.json()["message"] + data = r.json()["data"] if r.is_error: return StatusResponse(data["message"], 0) @@ -81,7 +81,6 @@ class OpenNodeWallet(Wallet): def get_invoice_status(self, checking_id: str) -> PaymentStatus: r = httpx.get(f"{self.endpoint}/v1/charge/{checking_id}", headers=self.auth) - if r.is_error: return PaymentStatus(None)