diff --git a/electrum/daemon.py b/electrum/daemon.py index cf64aac86..480da28e4 100644 --- a/electrum/daemon.py +++ b/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)