Update to latest bitcoinrpc

This commit is contained in:
TheNain38 2016-04-08 11:47:39 +02:00
parent faa2c3e6ce
commit 298191a6ef
1 changed files with 2 additions and 3 deletions

View File

@ -137,9 +137,8 @@ class AuthServiceProxy(object):
self.__conn.sock.settimeout(self.__timeout)
response = self._get_response()
if 'error' in response:
if response['error'] is not None:
raise JSONRPCException(response['error'])
if response.get('error') is not None:
raise JSONRPCException(response['error'])
elif 'result' not in response:
raise JSONRPCException({
'code': -343, 'message': 'missing JSON-RPC result'})