Browse Source

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

wallet.synchronizer should exist at construction.
283
ThomasV 11 years ago
parent
commit
3467bd0101
  1. 2
      lib/wallet.py

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

Loading…
Cancel
Save