change switch name to -disablesafemode
This commit is contained in:
parent
87cfcfd374
commit
d3631907d6
1 changed files with 2 additions and 2 deletions
4
rpc.cpp
4
rpc.cpp
|
@ -995,8 +995,8 @@ void ThreadRPCServer2(void* parg)
|
||||||
|
|
||||||
// Observe safe mode
|
// Observe safe mode
|
||||||
string strWarning = GetWarnings("rpc");
|
string strWarning = GetWarnings("rpc");
|
||||||
if (strWarning != "" && !mapArgs.count("-overridesafety") && !setAllowInSafeMode.count(strMethod))
|
if (strWarning != "" && !mapArgs.count("-disablesafemode") && !setAllowInSafeMode.count(strMethod))
|
||||||
throw runtime_error(strWarning);
|
throw runtime_error(string("Safe mode: ") + strWarning);
|
||||||
|
|
||||||
// Execute
|
// Execute
|
||||||
map<string, rpcfn_type>::iterator mi = mapCallTable.find(strMethod);
|
map<string, rpcfn_type>::iterator mi = mapCallTable.find(strMethod);
|
||||||
|
|
Loading…
Reference in a new issue