diff --git a/scripts/joinmarket-qt.py b/scripts/joinmarket-qt.py index c52717c..d7b3e00 100644 --- a/scripts/joinmarket-qt.py +++ b/scripts/joinmarket-qt.py @@ -1452,7 +1452,8 @@ class JMMainWindow(QMainWindow): str(firstarg), pwd, max_mix_depth=jm_single().config.getint( - "GUI", "max_mix_depth")) + "GUI", "max_mix_depth"), + gaplimit=jm_single().config.getint("GUI", "gaplimit")) except WalletError: JMQtMessageBox(self, "Wrong password", diff --git a/scripts/qtsupport.py b/scripts/qtsupport.py index ebe2fa5..c61c66c 100644 --- a/scripts/qtsupport.py +++ b/scripts/qtsupport.py @@ -48,7 +48,6 @@ query. This is bad for privacy - consider using a Bitcoin Core node instead."""} #configuration types config_types = {'rpc_port': int, - 'port': int, 'usessl': bool, 'socks5': bool, 'network': bool, @@ -71,9 +70,9 @@ config_tips = { 'rpc_port': 'port for connecting to bitcoind over rpc', 'rpc_user': 'user for connecting to bitcoind over rpc', 'rpc_password': 'password for connecting to bitcoind over rpc', - 'host': 'hostname for IRC server', - 'channel': 'channel name on IRC server', - 'port': 'port for connecting to IRC server', + 'host': 'hostname for IRC server (or comma separated list)', + 'channel': 'channel name on IRC server (or comma separated list)', + 'port': 'port for connecting to IRC server (or comma separated list)', 'usessl': 'check to use SSL for connection to IRC', 'socks5': 'check to use SOCKS5 proxy for IRC connection', 'socks5_host': 'host for SOCKS5 proxy',