From 388ed01d0f8b3e49520bd6ce48e5558de6773010 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Wed, 13 Jan 2016 15:02:58 +0100 Subject: [PATCH] fix start_threads in wizard --- lib/daemon.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/daemon.py b/lib/daemon.py index d7a408e51..44c2ea289 100644 --- 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)