diff options
author | luigi1111 <luigi1111w@gmail.com> | 2022-09-26 14:55:28 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2022-09-26 14:55:28 -0500 |
commit | a7b0c93c7db8054e833914f5de9f36a27d2f23b3 (patch) | |
tree | a63f9c9d4358f6ba41bcb9ef9ede1f2c01607afe /src/wallet/api/wallet2_api.h | |
parent | Merge pull request #8579 (diff) | |
parent | add an option to force-update multisig key exchange under some circumstances (diff) | |
download | monero-a7b0c93c7db8054e833914f5de9f36a27d2f23b3.tar.xz |
Merge pull request #8582
1cd21bf add an option to force-update multisig key exchange under some circumstances (koe)
Diffstat (limited to 'src/wallet/api/wallet2_api.h')
-rw-r--r-- | src/wallet/api/wallet2_api.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/wallet/api/wallet2_api.h b/src/wallet/api/wallet2_api.h index b67bce60c..0ae84adb9 100644 --- a/src/wallet/api/wallet2_api.h +++ b/src/wallet/api/wallet2_api.h @@ -796,9 +796,10 @@ struct Wallet /** * @brief exchange_multisig_keys - provides additional key exchange round for arbitrary multisig schemes (like N-1/N, M/N) * @param info - base58 encoded key derivations returned by makeMultisig or exchangeMultisigKeys function call + * @param force_update_use_with_caution - force multisig account to update even if not all signers contribute round messages * @return new info string if more rounds required or an empty string if wallet creation is done */ - virtual std::string exchangeMultisigKeys(const std::vector<std::string> &info) = 0; + virtual std::string exchangeMultisigKeys(const std::vector<std::string> &info, const bool force_update_use_with_caution) = 0; /** * @brief exportMultisigImages - exports transfers' key images * @param images - output paramter for hex encoded array of images |