remove one extra core.schema.

This commit is contained in:
fiatjaf 2021-07-03 15:39:58 -03:00
parent 61c300c393
commit f6e255d9be

View File

@ -66,7 +66,7 @@ async def dispatch_webhook(payment: Payment):
async def mark_webhook_sent(payment: Payment, status: int) -> None: async def mark_webhook_sent(payment: Payment, status: int) -> None:
await db.execute( await db.execute(
""" """
UPDATE core.apipayments SET webhook_status = ? UPDATE apipayments SET webhook_status = ?
WHERE hash = ? WHERE hash = ?
""", """,
(status, payment.payment_hash), (status, payment.payment_hash),