Skip to content

Commit

Permalink
remove comments
Browse files Browse the repository at this point in the history
  • Loading branch information
callebtc committed Sep 24, 2024
1 parent 08eac15 commit 805870d
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 19 deletions.
17 changes: 0 additions & 17 deletions cashu/mint/crud.py
Original file line number Diff line number Diff line change
Expand Up @@ -522,23 +522,6 @@ async def update_mint_quote(
},
)

# async def update_mint_quote_paid(
# self,
# *,
# quote_id: str,
# paid: bool,
# db: Database,
# conn: Optional[Connection] = None,
# ) -> None:
# await (conn or db).execute(
# f"UPDATE {db.table_with_schema('mint_quotes')} SET paid = ? WHERE"
# " quote = ?",
# (
# paid,
# quote_id,
# ),
# )

async def store_melt_quote(
self,
*,
Expand Down
2 changes: 0 additions & 2 deletions cashu/wallet/wallet.py
Original file line number Diff line number Diff line change
Expand Up @@ -770,9 +770,7 @@ async def melt(
# payment is still pending
return status

# else:
# invoice was paid successfully

await self.invalidate(proofs)

# update paid status in db
Expand Down

0 comments on commit 805870d

Please sign in to comment.