|
|
@ -506,15 +506,15 @@ UniValue echo(const JSONRPCRequest& request) |
|
|
|
static const CRPCCommand commands[] = |
|
|
|
static const CRPCCommand commands[] = |
|
|
|
{ // category name actor (function) okSafeMode
|
|
|
|
{ // category name actor (function) okSafeMode
|
|
|
|
// --------------------- ------------------------ ----------------------- ----------
|
|
|
|
// --------------------- ------------------------ ----------------------- ----------
|
|
|
|
{ "control", "getinfo", &getinfo, true }, /* uses wallet if enabled */ |
|
|
|
{ "control", "getinfo", &getinfo, true, {} }, /* uses wallet if enabled */ |
|
|
|
{ "control", "getmemoryinfo", &getmemoryinfo, true }, |
|
|
|
{ "control", "getmemoryinfo", &getmemoryinfo, true, {} }, |
|
|
|
{ "util", "validateaddress", &validateaddress, true }, /* uses wallet if enabled */ |
|
|
|
{ "util", "validateaddress", &validateaddress, true, {"bitcoinaddress"} }, /* uses wallet if enabled */ |
|
|
|
{ "util", "createmultisig", &createmultisig, true }, |
|
|
|
{ "util", "createmultisig", &createmultisig, true, {"nrequired","keys"} }, |
|
|
|
{ "util", "verifymessage", &verifymessage, true }, |
|
|
|
{ "util", "verifymessage", &verifymessage, true, {"bitcoinaddress","signature","message"} }, |
|
|
|
{ "util", "signmessagewithprivkey", &signmessagewithprivkey, true }, |
|
|
|
{ "util", "signmessagewithprivkey", &signmessagewithprivkey, true, {"privkey","message"} }, |
|
|
|
|
|
|
|
|
|
|
|
/* Not shown in help */ |
|
|
|
/* Not shown in help */ |
|
|
|
{ "hidden", "setmocktime", &setmocktime, true }, |
|
|
|
{ "hidden", "setmocktime", &setmocktime, true, {"timestamp"}}, |
|
|
|
{ "hidden", "echo", &echo, true, {"arg0","arg1","arg2","arg3","arg4","arg5","arg6","arg7","arg8","arg9"}}, |
|
|
|
{ "hidden", "echo", &echo, true, {"arg0","arg1","arg2","arg3","arg4","arg5","arg6","arg7","arg8","arg9"}}, |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|