From ae50763799ff1a650d46a6b28da4d34613f5fd5b Mon Sep 17 00:00:00 2001 From: The MMGen Project Date: Sun, 27 Jun 2021 20:58:01 +0000 Subject: [PATCH] rpc.py: disable connection testing if 'proxy' is set --- mmgen/rpc.py | 1 + 1 file changed, 1 insertion(+) diff --git a/mmgen/rpc.py b/mmgen/rpc.py index b544113b..fbf8c2c0 100755 --- a/mmgen/rpc.py +++ b/mmgen/rpc.py @@ -673,6 +673,7 @@ class MoneroRPCClient(RPCClient): if proxy is not None: from .obj import IPPort self.proxy = IPPort(proxy) + test_connection = False super().__init__(host,port,test_connection) if self.auth_type: self.auth = auth_data(user,passwd)