mirror of
https://github.com/lnbits/lnbits.git
synced 2025-09-22 15:57:28 +02:00
Fix according to suggestion from prusnak
Co-authored-by: Pavol Rusnak <pavol@rusnak.io>
This commit is contained in:
committed by
Pavol Rusnak
parent
a61d74deff
commit
1195dd3eb3
@@ -195,7 +195,7 @@ class LndRestWallet(Wallet):
|
|||||||
if "message" in line["error"]
|
if "message" in line["error"]
|
||||||
else 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(False)
|
||||||
return PaymentStatus(None)
|
return PaymentStatus(None)
|
||||||
payment = line.get("result")
|
payment = line.get("result")
|
||||||
|
Reference in New Issue
Block a user