commit 0368a2cd5e48e98c34bce13aa5f9a15f3ab806d5
parent bad90305544e3a07b243882d0411632dcb082d22
Author: ThomasV <thomasv@gitorious>
Date: Sun, 5 Jul 2015 18:16:33 +0200
fix bug from #1281
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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)