more tests

This commit is contained in:
Ben Arc
2021-04-16 12:07:47 +01:00
parent 74eb91d63f
commit f8745cadf0
2 changed files with 1 additions and 2 deletions

View File

@@ -80,7 +80,7 @@ async def lnurl_callback(cp_id):
success_action=None,
routes=[],
)
print(cp_id)
print(payment_request)
print(jsonify(resp.dict()))
return jsonify(resp.dict())

View File

@@ -24,7 +24,6 @@ async def ws_panel(copilot_id):
@copilot_ext.websocket('/ws/compose/<copilot_id>')
async def ws_compose(copilot_id):
global connected_websockets
print(copilot_id)
while True:
data = await websocket.receive()
await websocket.send(connected_websockets[copilot_id])