fix typo in view api.py (#933)

This commit is contained in:
dni ⚡ 2022-08-29 17:32:36 +02:00 committed by GitHub
parent 88d38f7294
commit 5fecb02b8d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -378,7 +378,7 @@ async def subscribe(request: Request, wallet: Wallet):
while True:
payment: Payment = await payment_queue.get()
if payment.wallet_id == this_wallet_id:
logger.debug("payment receieved", payment)
logger.debug("payment received", payment)
await send_queue.put(("payment-received", payment))
asyncio.create_task(payment_received())