1
0

fix: check_password method of Multisig wallets

This commit is contained in:
ThomasV
2016-09-28 17:54:35 +02:00
parent 9509592767
commit 68ed60ca87

View File

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