diff options
author | naughtyfox <mail.for.milo@gmail.com> | 2018-09-10 19:18:25 +0300 |
---|---|---|
committer | naughtyfox <mail.for.milo@gmail.com> | 2018-09-10 19:33:08 +0300 |
commit | 26971d46fc06b8be4a6ecc0309f2650f354ddc91 (patch) | |
tree | ee714aae88d86c81a0e878e4a37c962fb2586661 /src/wallet/api/wallet.cpp | |
parent | Merge pull request #4290 (diff) | |
download | monero-26971d46fc06b8be4a6ecc0309f2650f354ddc91.tar.xz |
WalletAPI: 'hasMultisigPartialKeyImages' function added
Diffstat (limited to 'src/wallet/api/wallet.cpp')
-rw-r--r-- | src/wallet/api/wallet.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/wallet/api/wallet.cpp b/src/wallet/api/wallet.cpp index 7b4ad27e4..43a023d3c 100644 --- a/src/wallet/api/wallet.cpp +++ b/src/wallet/api/wallet.cpp @@ -1244,6 +1244,20 @@ size_t WalletImpl::importMultisigImages(const vector<string>& images) { return 0; } +bool WalletImpl::hasMultisigPartialKeyImages() const { + try { + clearStatus(); + checkMultisigWalletReady(m_wallet); + + return m_wallet->has_multisig_partial_key_images(); + } catch (const exception& e) { + LOG_ERROR("Error on checking for partial multisig key images: ") << e.what(); + setStatusError(string(tr("Failed to check for partial multisig key images: ")) + e.what()); + } + + return false; +} + PendingTransaction* WalletImpl::restoreMultisigTransaction(const string& signData) { try { clearStatus(); |