electrum

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

commit 68ed60ca87691d3802741da08642d94d15855d1a
parent 95095927675c2af26f4537d8b2d43dc99cabe1f1
Author: ThomasV <thomasv@electrum.org>
Date:   Wed, 28 Sep 2016 17:54:35 +0200

fix: check_password method of Multisig wallets

Diffstat:
Mlib/wallet.py | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/lib/wallet.py b/lib/wallet.py @@ -1516,6 +1516,9 @@ class Multisig_Wallet(Deterministic_Wallet): self.storage.put(name, keystore.dump()) self.storage.put('use_encryption', (new_pw is not None)) + def check_password(self, password): + self.keystore.check_password(password) + def has_seed(self): return self.keystore.has_seed()