mirror of
https://github.com/monero-project/monero.git
synced 2025-05-02 12:26:06 -04:00
disable multisig by default
There are vulnerabilities in multisig protocol if the parties do not trust each other, and while there is a patch for it, it has not been throroughly reviewed yet, so it is felt safer to disable multisig by default for now. If all parties in a multisig setup trust each other, then it is safe to enable multisig.
This commit is contained in:
parent
8349cfe4a6
commit
2979474221
9 changed files with 111 additions and 7 deletions
|
@ -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'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue