mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-23 17:47:31 +00:00
fix requires_upgrade
This commit is contained in:
parent
62fe3a411b
commit
648d5c0cbb
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue