1
0

wizard: fix regression: unencrypted wallets were not getting upgraded

fixes #5177
This commit is contained in:
SomberNight
2019-03-04 17:23:43 +01:00
parent bf1c1c2a11
commit 12b98fa251
7 changed files with 25 additions and 6 deletions

View File

@@ -251,6 +251,8 @@ class Daemon(DaemonThread):
storage.decrypt(password)
if storage.requires_split():
return
if storage.requires_upgrade():
return
if storage.get_action():
return
wallet = Wallet(storage)