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 /utils/python-rpc/framework/wallet.py | |
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 'utils/python-rpc/framework/wallet.py')
-rw-r--r-- | utils/python-rpc/framework/wallet.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/utils/python-rpc/framework/wallet.py b/utils/python-rpc/framework/wallet.py index f2618b0a8..0f6db76bd 100644 --- a/utils/python-rpc/framework/wallet.py +++ b/utils/python-rpc/framework/wallet.py @@ -524,12 +524,13 @@ class Wallet(object): } return self.rpc.send_json_rpc_request(finalize_multisig) - def exchange_multisig_keys(self, multisig_info, password = ''): + def exchange_multisig_keys(self, multisig_info, password = '', force_update_use_with_caution = False): exchange_multisig_keys = { 'method': 'exchange_multisig_keys', 'params' : { 'multisig_info': multisig_info, 'password': password, + 'force_update_use_with_caution': force_update_use_with_caution, }, 'jsonrpc': '2.0', 'id': '0' |