electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 348f66b8a5746e8ca789ab311b4bd5f6743705d6
parent a1f91ee49ece33e6319cfec18b4a1e1b6bd3e2f2
Author: ThomasV <thomasv@electrum.org>
Date:   Fri, 27 Oct 2017 15:00:46 +0200

fix requires_upgrade

Diffstat:
Mlib/storage.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/storage.py b/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')