electrum

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

commit 9d3c8efddabce6899aba225774d16d686dfbefd6
parent 8a4a29dd0c114b8a6bfed52299dfa88bcbc28825
Author: ThomasV <thomasv@gitorious>
Date:   Tue, 15 Oct 2013 11:00:36 +0200

bug fix: seed_version

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

diff --git a/lib/wallet.py b/lib/wallet.py @@ -1476,7 +1476,7 @@ class Wallet: if self.is_found(): self.seed_version = 4 - self.storage.put('seed_version', wallet.seed_version, True) + self.storage.put('seed_version', self.seed_version, True) else: self.accounts.pop(0) self.create_accounts()