Browse Source

fix requires_upgrade

3.0.x
ThomasV 7 years ago
parent
commit
348f66b8a5
  1. 2
      lib/storage.py

2
lib/storage.py

@ -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')

Loading…
Cancel
Save