Skip to content

Commit

Permalink
fixup!
Browse files Browse the repository at this point in the history
  • Loading branch information
dni committed Aug 12, 2024
1 parent 6e403a6 commit b5c6783
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crud.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ async def get_eightballs(wallet_ids: Union[str, list[str]]) -> list[EightBall]:
async def update_eightball(eightball: EightBall) -> EightBall:
await db.execute(
update_query("eightball.maintable", eightball),
(*eightball.dict().values(),),
(*eightball.dict().values(), eightball.id,),
)
return eightball

Expand Down
2 changes: 1 addition & 1 deletion views_lnurl.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ async def api_lnurl_pay_cb(
if not eightball:
return {"status": "ERROR", "reason": "No eightball found"}

payment_request = await create_invoice(
_, payment_request = await create_invoice(
wallet_id=eightball.wallet,
amount=int(amount / 1000),
memo=eightball.name,
Expand Down

0 comments on commit b5c6783

Please sign in to comment.