URI: 
       tfix: check_password method of Multisig wallets - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 68ed60ca87691d3802741da08642d94d15855d1a
   DIR parent 95095927675c2af26f4537d8b2d43dc99cabe1f1
  HTML Author: ThomasV <thomasv@electrum.org>
       Date:   Wed, 28 Sep 2016 17:54:35 +0200
       
       fix: check_password method of Multisig wallets
       
       Diffstat:
         M lib/wallet.py                       |       3 +++
       
       1 file changed, 3 insertions(+), 0 deletions(-)
       ---
   DIR diff --git a/lib/wallet.py b/lib/wallet.py
       t@@ -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()