Merge pull request #499 from shunyata/bugfix/synchronizer-attribute-is-uninitialized

wallet.synchronizer should exist at construction.
This commit is contained in:
ThomasV 2013-12-12 15:23:20 -08:00
commit 3467bd0101
1 changed files with 2 additions and 0 deletions

View File

@ -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()