Merge pull request #2348 from freewil/crpccommand-table
make vRPCCommands comment match property names
This commit is contained in:
commit
bd80c66ac0
2 changed files with 66 additions and 66 deletions
|
@ -194,8 +194,8 @@ Value stop(const Array& params, bool fHelp)
|
||||||
|
|
||||||
|
|
||||||
static const CRPCCommand vRPCCommands[] =
|
static const CRPCCommand vRPCCommands[] =
|
||||||
{ // name function safemd unlocked
|
{ // name actor (function) okSafeMode threadSafe
|
||||||
// ------------------------ ----------------------- ------ --------
|
// ------------------------ ----------------------- ---------- ----------
|
||||||
{ "help", &help, true, true },
|
{ "help", &help, true, true },
|
||||||
{ "stop", &stop, true, true },
|
{ "stop", &stop, true, true },
|
||||||
{ "getblockcount", &getblockcount, true, false },
|
{ "getblockcount", &getblockcount, true, false },
|
||||||
|
@ -1072,7 +1072,7 @@ json_spirit::Value CRPCTable::execute(const std::string &strMethod, const json_s
|
||||||
// Execute
|
// Execute
|
||||||
Value result;
|
Value result;
|
||||||
{
|
{
|
||||||
if (pcmd->unlocked)
|
if (pcmd->threadSafe)
|
||||||
result = pcmd->actor(params, false);
|
result = pcmd->actor(params, false);
|
||||||
else {
|
else {
|
||||||
LOCK2(cs_main, pwalletMain->cs_wallet);
|
LOCK2(cs_main, pwalletMain->cs_wallet);
|
||||||
|
|
|
@ -95,7 +95,7 @@ public:
|
||||||
std::string name;
|
std::string name;
|
||||||
rpcfn_type actor;
|
rpcfn_type actor;
|
||||||
bool okSafeMode;
|
bool okSafeMode;
|
||||||
bool unlocked;
|
bool threadSafe;
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue