diff options
author | luigi1111 <luigi1111w@gmail.com> | 2022-05-26 21:22:52 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2022-05-26 21:22:52 -0500 |
commit | f96cf865329ac5b9847264b222aa8e48192328a0 (patch) | |
tree | d4030b31f717e4a0942b0443cac0bf5a190c96b4 /utils | |
parent | Merge pull request #8326 (diff) | |
parent | disable multisig by default (diff) | |
download | monero-f96cf865329ac5b9847264b222aa8e48192328a0.tar.xz |
Merge pull request #8328
2979474 disable multisig by default (moneromooo-monero)
Diffstat (limited to 'utils')
-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 037beee84..01e937627 100644 --- a/utils/python-rpc/framework/wallet.py +++ b/utils/python-rpc/framework/wallet.py @@ -490,10 +490,11 @@ class Wallet(object): } return self.rpc.send_json_rpc_request(is_multisig) - def prepare_multisig(self): + def prepare_multisig(self, enable_multisig_experimental = False): prepare_multisig = { 'method': 'prepare_multisig', 'params' : { + 'enable_multisig_experimental': enable_multisig_experimental, }, 'jsonrpc': '2.0', 'id': '0' |