From 68ed60ca87691d3802741da08642d94d15855d1a Mon Sep 17 00:00:00 2001 From: ThomasV Date: Wed, 28 Sep 2016 17:54:35 +0200 Subject: [PATCH] fix: check_password method of Multisig wallets --- lib/wallet.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/wallet.py b/lib/wallet.py index cc3e7bab..8243a416 100644 --- 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()