Fix according to suggestion from prusnak

Co-authored-by: Pavol Rusnak <pavol@rusnak.io>
This commit is contained in:
Sébastien Krafft
2023-11-12 22:53:03 +01:00
committed by Pavol Rusnak
co-authored by Pavol Rusnak
parent a61d74deff
commit 1195dd3eb3
+1 -1
View File
@@ -195,7 +195,7 @@ class LndRestWallet(Wallet):
if "message" in line["error"]
else line["error"]
)
if line["error"]["code"] == 5 and line["error"]["message"] == "payment isn't initiated":
if line["error"].get("code") == 5 and line["error"].get("message") == "payment isn't initiated":
return PaymentStatus(False)
return PaymentStatus(None)
payment = line.get("result")