commit 388ed01d0f8b3e49520bd6ce48e5558de6773010
parent bda9adc01f892321c97d6daba7cd4f94016934a7
Author: ThomasV <thomasv@electrum.org>
Date: Wed, 13 Jan 2016 15:02:58 +0100
fix start_threads in wizard
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/lib/daemon.py b/lib/daemon.py
@@ -135,6 +135,8 @@ class Daemon(DaemonThread):
if action:
wizard = get_wizard()
wallet = wizard.run(self.network, storage)
+ else:
+ wallet.start_threads(self.network)
else:
wallet = Wallet(storage)
wallet.start_threads(self.network)