commit 3467bd0101c664c9dd39e85a3f882ebd5ed04c6f
parent 70cc6271b930dc8e8a6a25b4fa44f2734117e602
Author: ThomasV <thomasv1@gmx.de>
Date: Thu, 12 Dec 2013 15:23:20 -0800
Merge pull request #499 from shunyata/bugfix/synchronizer-attribute-is-uninitialized
wallet.synchronizer should exist at construction.
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/lib/wallet.py b/lib/wallet.py
@@ -186,6 +186,8 @@ class Wallet:
print msg
sys.exit(1)
+ # This attribute is set when wallet.start_threads is called.
+ self.synchronizer = None
self.load_accounts()