Update lnbits.py
This commit is contained in:
parent
7fced84f57
commit
de187559a8
1 changed files with 2 additions and 2 deletions
|
|
@ -40,9 +40,9 @@ class LnbitsWallet(Wallet):
|
||||||
return InvoiceResponse(ok, checking_id, fee_msat, error_message)
|
return InvoiceResponse(ok, checking_id, fee_msat, error_message)
|
||||||
|
|
||||||
def get_invoice_status(self, checking_id: str) -> PaymentStatus:
|
def get_invoice_status(self, checking_id: str) -> PaymentStatus:
|
||||||
r = get(url=f"{self.endpoint}/v1/api/payments{checking_id}", headers=self.auth_invoice)
|
r = get(url=f"{self.endpoint}/api/v1/payments/{checking_id}", headers=self.auth_invoice)
|
||||||
return PaymentStatus(r['paid'])
|
return PaymentStatus(r['paid'])
|
||||||
|
|
||||||
def get_payment_status(self, checking_id: str) -> PaymentStatus:
|
def get_payment_status(self, checking_id: str) -> PaymentStatus:
|
||||||
r = get(url=f"{self.endpoint}/v1/api/payments{checking_id}", headers=self.auth_invoice)
|
r = get(url=f"{self.endpoint}/api/v1/payments/{checking_id}", headers=self.auth_invoice)
|
||||||
return PaymentStatus(r['paid'])
|
return PaymentStatus(r['paid'])
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue