Browse Source

check requires_split before upgrade

283
ThomasV 8 years ago
parent
commit
5541c1bec6
  1. 5
      lib/daemon.py
  2. 3
      lib/storage.py

5
lib/daemon.py

@ -187,8 +187,11 @@ class Daemon(DaemonThread):
storage = WalletStorage(path)
if not storage.file_exists:
return
if storage.requires_split() or storage.requires_upgrade() or storage.get_action():
if storage.requires_split() or storage.get_action():
return
if self.requires_upgrade():
self.print_error('upgrading wallet format')
self.upgrade()
wallet = Wallet(storage)
wallet.start_threads(self.network)
self.wallets[path] = wallet

3
lib/storage.py

@ -60,9 +60,6 @@ class WalletStorage(PrintError):
self.print_error("wallet path", self.path)
if self.path:
self.read(self.path)
if self.requires_upgrade():
self.print_error('upgrading wallet format')
self.upgrade()
# check here if I need to load a plugin
t = self.get('wallet_type')
l = plugin_loaders.get(t)

Loading…
Cancel
Save