1
0

allow user to change the port

This commit is contained in:
thomasv
2012-03-14 15:35:39 +01:00
parent db0725bdcd
commit 9fddc3e6ea
4 changed files with 38 additions and 49 deletions

View File

@@ -265,6 +265,12 @@ class Wallet:
self.remote_url = None
def set_server(self, host, port):
if host!= self.host or port!=self.port:
self.host = host
self.port = port
self.interface.is_connected = False # this exits the polling loop
def set_path(self, wallet_path):
if wallet_path is not None: