Browse Source

Update crud.py

fee_issues
Arc 5 years ago
committed by GitHub
parent
commit
5c34c23617
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      lnbits/extensions/amilk/crud.py

6
lnbits/extensions/amilk/crud.py

@ -7,15 +7,15 @@ from lnbits.db import open_ext_db
from .models import AMilk
def create_amilk(*, wallet_id: str, url: str, memo: str, amount: int) -> AMilk:
def create_amilk(*, wallet_id: str, lnurl: str, atime: int, amount: int) -> AMilk:
with open_ext_db("amilk") as db:
amilk_id = urlsafe_b64encode(uuid4().bytes_le).decode('utf-8')
db.execute(
"""
INSERT INTO amilks (id, wallet, url, memo, amount)
INSERT INTO amilks (id, wallet, lnurl, atime, amount)
VALUES (?, ?, ?, ?, ?)
""",
(amilk_id, wallet_id, url, memo, amount),
(amilk_id, wallet_id, lnurl, atime, amount),
)
return get_amilk(amilk_id)

Loading…
Cancel
Save