mirror of
https://github.com/twisterarmy/twister-core.git
synced 2025-01-11 15:27:57 +00:00
Disable addmultisigaddress if not testnet
This commit is contained in:
parent
d7062ef1bd
commit
fae3e2aab6
@ -946,6 +946,8 @@ Value addmultisigaddress(const Array& params, bool fHelp)
|
|||||||
"If [account] is specified, assign address to [account].";
|
"If [account] is specified, assign address to [account].";
|
||||||
throw runtime_error(msg);
|
throw runtime_error(msg);
|
||||||
}
|
}
|
||||||
|
if (!fTestNet)
|
||||||
|
throw runtime_error("addmultisigaddress available only when running -testnet\n");
|
||||||
|
|
||||||
int nRequired = params[0].get_int();
|
int nRequired = params[0].get_int();
|
||||||
const Array& keys = params[1].get_array();
|
const Array& keys = params[1].get_array();
|
||||||
|
Loading…
Reference in New Issue
Block a user