fix typo in view api.py (#933)
This commit is contained in:
@@ -378,7 +378,7 @@ async def subscribe(request: Request, wallet: Wallet):
|
|||||||
while True:
|
while True:
|
||||||
payment: Payment = await payment_queue.get()
|
payment: Payment = await payment_queue.get()
|
||||||
if payment.wallet_id == this_wallet_id:
|
if payment.wallet_id == this_wallet_id:
|
||||||
logger.debug("payment receieved", payment)
|
logger.debug("payment received", payment)
|
||||||
await send_queue.put(("payment-received", payment))
|
await send_queue.put(("payment-received", payment))
|
||||||
|
|
||||||
asyncio.create_task(payment_received())
|
asyncio.create_task(payment_received())
|
||||||
|
|||||||
Reference in New Issue
Block a user