forked from lnbits/example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtasks.py
More file actions
25 lines (17 loc) · 691 Bytes
/
Copy pathtasks.py
File metadata and controls
25 lines (17 loc) · 691 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# tasks.py is for asynchronous when invoices get paid
# add your dependencies here
import asyncio
from lnbits.core.models import Payment
from lnbits.tasks import register_invoice_listener
from loguru import logger
async def wait_for_paid_invoices():
invoice_queue = asyncio.Queue()
register_invoice_listener(invoice_queue, "ext_example")
while True:
payment = await invoice_queue.get()
await on_invoice_paid(payment)
async def on_invoice_paid(payment: Payment) -> None:
# Will grab any payment with the tag "example"
if payment.extra.get("tag") == "example":
logger.info("example extension received payment")
logger.debug(payment)