2022-01-27 12:24:38 +00:00
|
|
|
import asyncio
|
|
|
|
|
|
|
|
from lnbits.core.models import Payment
|
|
|
|
from lnbits.tasks import register_invoice_listener
|
|
|
|
|
|
|
|
|
|
|
|
async def wait_for_paid_invoices():
|
|
|
|
invoice_queue = asyncio.Queue()
|
|
|
|
register_invoice_listener(invoice_queue)
|
|
|
|
|
|
|
|
while True:
|
|
|
|
payment = await invoice_queue.get()
|
|
|
|
await on_invoice_paid(payment)
|
|
|
|
|
|
|
|
|
|
|
|
async def on_invoice_paid(payment: Payment) -> None:
|
2022-01-28 16:22:54 +00:00
|
|
|
"""
|
2022-01-27 12:24:38 +00:00
|
|
|
if "lnticket" != payment.extra.get("tag"):
|
|
|
|
# not a lnticket invoice
|
|
|
|
return
|
|
|
|
|
|
|
|
ticket = await get_ticket(payment.checking_id)
|
|
|
|
if not ticket:
|
|
|
|
print("this should never happen", payment)
|
|
|
|
return
|
|
|
|
|
|
|
|
await payment.set_pending(False)
|
2022-01-28 16:22:54 +00:00
|
|
|
await set_ticket_paid(payment.payment_hash)
|
|
|
|
"""
|