From 0368a2cd5e48e98c34bce13aa5f9a15f3ab806d5 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sun, 5 Jul 2015 18:16:33 +0200 Subject: [PATCH] fix bug from #1281 --- lib/wallet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/wallet.py b/lib/wallet.py index 837bcd38b..2ada720e7 100644 --- a/lib/wallet.py +++ b/lib/wallet.py @@ -1095,7 +1095,7 @@ class Abstract_Wallet(object): def stop_threads(self): if self.network: self.verifier.stop() - self.network.jobs = [] + self.network.jobs.remove(self.synchronizer.main_loop) self.synchronizer = None self.storage.put('stored_height', self.get_local_height(), True)