1
0

storage: upgrade format version automatically in load_data()

This commit is contained in:
SomberNight
2017-10-12 07:08:00 +02:00
parent 1320b18d7e
commit a5ffa69a3e
3 changed files with 19 additions and 6 deletions

View File

@@ -191,7 +191,7 @@ class InstallWizard(QDialog, MessageBoxMixin, BaseWizard):
def on_filename(filename):
path = os.path.join(wallet_folder, filename)
try:
self.storage = WalletStorage(path)
self.storage = WalletStorage(path, manual_upgrades=True)
except IOError:
self.storage = None
if self.storage: