tfix requires_upgrade - electrum - Electrum Bitcoin wallet
HTML git clone https://git.parazyd.org/electrum
DIR Log
DIR Files
DIR Refs
DIR Submodules
---
DIR commit 348f66b8a5746e8ca789ab311b4bd5f6743705d6
DIR parent a1f91ee49ece33e6319cfec18b4a1e1b6bd3e2f2
HTML Author: ThomasV <thomasv@electrum.org>
Date: Fri, 27 Oct 2017 15:00:46 +0200
fix requires_upgrade
Diffstat:
M lib/storage.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
DIR diff --git a/lib/storage.py b/lib/storage.py
t@@ -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')