From 1cd21bfba584fa7d886f13684f34c71931eddf4d Mon Sep 17 00:00:00 2001 From: koe Date: Sat, 14 May 2022 17:07:47 -0500 Subject: add an option to force-update multisig key exchange under some circumstances --- utils/python-rpc/framework/wallet.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'utils/python-rpc/framework') 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' -- cgit v1.2.3