Skip to content

Commit

Permalink
change threadSafe (i.e. cs_main lock usage) for Dash rpc commands
Browse files Browse the repository at this point in the history
Closes #604
  • Loading branch information
UdjinM6 authored and schinzelh committed Sep 12, 2015
1 parent 818303d commit 9710b50
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/rpcserver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -309,14 +309,14 @@ static const CRPCCommand vRPCCommands[] =
{ "hidden", "setmocktime", &setmocktime, true, false, false },

/* Dash features */
{ "dash", "mnsync", &mnsync, true, false, false },
{ "dash", "spork", &spork, true, false, false },
{ "dash", "masternode", &masternode, true, false, true },
{ "dash", "mnbudget", &mnbudget, true, false, false },
{ "dash", "mnfinalbudget", &mnfinalbudget, true, false, false },
{ "dash", "masternodelist", &masternodelist, true, false, false },
{ "dash", "masternode", &masternode, true, true, false },
{ "dash", "masternodelist", &masternodelist, true, true, false },
{ "dash", "mnbudget", &mnbudget, true, true, false },
{ "dash", "mnfinalbudget", &mnfinalbudget, true, true, false },
{ "dash", "mnsync", &mnsync, true, true, false },
{ "dash", "spork", &spork, true, true, false },
#ifdef ENABLE_WALLET
{ "dash", "darksend", &darksend, false, false, true },
{ "dash", "darksend", &darksend, false, false, true }, /* not threadSafe because of SendMoney */

/* Wallet */
{ "wallet", "addmultisigaddress", &addmultisigaddress, true, false, true },
Expand Down

0 comments on commit 9710b50

Please sign in to comment.