mirror of
https://github.com/monero-project/monero.git
synced 2025-05-02 19:04:55 -04:00
Merge pull request #8329
4b0785f
add an option to force-update multisig key exchange under some circumstances (koe)
This commit is contained in:
commit
0a10a4f870
15 changed files with 244 additions and 115 deletions
|
@ -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'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue