pylightning: Responses may not be iterable

This commit is contained in:
Jorge Timón 2019-08-30 22:10:32 +02:00 committed by Christian Decker
parent 48728d3828
commit 152f9b66b9

View File

@ -229,7 +229,9 @@ class UnixDomainSocketRpc(object):
sock.close()
self.logger.debug("Received response for %s call: %r", method, resp)
if "error" in resp:
if not isinstance(resp, dict):
raise ValueError("Malformed response, response is not a dictionary %s." % resp)
elif "error" in resp:
raise RpcError(method, payload, resp['error'])
elif "result" not in resp:
raise ValueError("Malformed response, \"result\" missing.")