Browse Source

fix bug from #1281

283
ThomasV 10 years ago
parent
commit
0368a2cd5e
  1. 2
      lib/wallet.py

2
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)

Loading…
Cancel
Save