SomberNight
4 years ago
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
1 changed files with
4 additions and
1 deletions
-
electrum/daemon.py
|
|
@ -196,7 +196,10 @@ class AuthenticatedServer(Logger): |
|
|
|
except Exception as e: |
|
|
|
self.logger.exception("invalid request") |
|
|
|
return web.Response(text='Invalid Request', status=500) |
|
|
|
response = {'id': _id} |
|
|
|
response = { |
|
|
|
'id': _id, |
|
|
|
'jsonrpc': '2.0', |
|
|
|
} |
|
|
|
try: |
|
|
|
if isinstance(params, dict): |
|
|
|
response['result'] = await f(**params) |
|
|
|