chore: comments

This commit is contained in:
Vlad Stan 2025-02-28 15:30:49 +02:00
parent 07ec19fe99
commit 3d3168ac0f
2 changed files with 2 additions and 0 deletions

View File

@ -160,6 +160,7 @@ class AlbyWallet(Wallet):
async def get_payment_status(self, checking_id: str) -> PaymentStatus:
try:
# todo: check failed/expired
r = await self.client.get(f"/invoices/{checking_id}")
if r.is_error:

View File

@ -137,6 +137,7 @@ class LnTipsWallet(Wallet):
async def get_payment_status(self, checking_id: str) -> PaymentStatus:
try:
# todo: failed/expired
r = await self.client.post(
url=f"/api/v1/paymentstatus/{checking_id}",
)