mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-01-19 05:33:47 +01:00
actually repeat the check once every 5 minutes just to be sure.
also because the stream doesn't cover outgoing payments.
This commit is contained in:
parent
7e4a42e7ff
commit
8e62d9287d
@ -66,9 +66,12 @@ async def invoice_listener(nursery):
|
||||
|
||||
async def check_pending_payments():
|
||||
await delete_expired_invoices()
|
||||
for payment in await get_payments(complete=False, pending=True, exclude_uncheckable=True):
|
||||
print(" - checking pending", payment.checking_id)
|
||||
await payment.check_pending()
|
||||
while True:
|
||||
for payment in await get_payments(complete=False, pending=True, exclude_uncheckable=True):
|
||||
print(" - checking pending", payment.checking_id)
|
||||
await payment.check_pending()
|
||||
|
||||
await trio.sleep(60 * 5)
|
||||
|
||||
|
||||
async def invoice_callback_dispatcher(checking_id: str):
|
||||
|
Loading…
Reference in New Issue
Block a user