fix requires_upgrade

This commit is contained in:
ThomasV 2017-10-27 15:00:46 +02:00
parent a1f91ee49e
commit 348f66b8a5
1 changed files with 1 additions and 1 deletions

View File

@ -249,7 +249,7 @@ class WalletStorage(PrintError):
return result
def requires_upgrade(self):
return self.file_exists() and self.get_seed_version() != FINAL_SEED_VERSION
return self.file_exists() and self.get_seed_version() < FINAL_SEED_VERSION
def upgrade(self):
self.print_error('upgrading wallet format')