Browse Source

fix: check_password method of Multisig wallets

283
ThomasV 8 years ago
parent
commit
68ed60ca87
  1. 3
      lib/wallet.py

3
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()

Loading…
Cancel
Save