From eaec64c3ef26c1c854fc4be808f2681365c2985d Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sun, 4 Dec 2011 12:49:47 +0100 Subject: [PATCH] new session if host changed --- client/gui.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/client/gui.py b/client/gui.py index 1c3ec8be..4e5bceaa 100644 --- a/client/gui.py +++ b/client/gui.py @@ -1024,9 +1024,12 @@ class BitcoinGUI: show_message("error") return - wallet.host = host - wallet.port = port - wallet.save() + if host!= wallet.host or port!=wallet.port: + wallet.host = host + wallet.port = port + wallet.save() + self.is_connected = False + wallet.new_session() def main(self):