1
0

wallet: fix offline hw wallet signing when not specifying --offline

closes #5532
This commit is contained in:
SomberNight
2019-07-29 13:27:37 +02:00
parent 84ca7ef306
commit a10dc04b28
3 changed files with 18 additions and 13 deletions

View File

@@ -157,7 +157,10 @@ class NotificationSession(RPCSession):
self.interface.logger.debug(msg)
class GracefulDisconnect(Exception):
class NetworkException(Exception): pass
class GracefulDisconnect(NetworkException):
log_level = logging.INFO
def __init__(self, *args, log_level=None, **kwargs):
@@ -173,7 +176,7 @@ class RequestTimedOut(GracefulDisconnect):
class ErrorParsingSSLCert(Exception): pass
class ErrorGettingSSLCertFromServer(Exception): pass
class ConnectError(Exception): pass
class ConnectError(NetworkException): pass
class _RSClient(RSClient):