mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-02-24 22:58:46 +01:00
34 lines
793 B
Python
34 lines
793 B
Python
import asyncio
|
|
import json
|
|
|
|
from cashu.core.migrations import migrate_databases
|
|
from cashu.mint import migrations
|
|
|
|
from lnbits.core.models import Payment
|
|
from lnbits.tasks import register_invoice_listener
|
|
|
|
from . import db, ledger
|
|
from .crud import get_cashu
|
|
|
|
|
|
async def startup_cashu_mint():
|
|
await migrate_databases(db, migrations)
|
|
await ledger.load_used_proofs()
|
|
await ledger.init_keysets()
|
|
print(ledger.get_keyset())
|
|
pass
|
|
|
|
|
|
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:
|
|
if not payment.extra.get("tag") == "cashu":
|
|
return
|
|
return
|