@ -232,8 +232,8 @@ static const CRPCCommand vRPCCommands[] =
@@ -232,8 +232,8 @@ static const CRPCCommand vRPCCommands[] =
{ " getblockchaininfo " , & getblockchaininfo , true , false , false } ,
{ " getbestblockhash " , & getbestblockhash , true , false , false } ,
{ " getblockcount " , & getblockcount , true , false , false } ,
{ " getblock " , & getblock , false , false , false } ,
{ " getblockhash " , & getblockhash , false , false , false } ,
{ " getblock " , & getblock , true , false , false } ,
{ " getblockhash " , & getblockhash , true , false , false } ,
{ " getdifficulty " , & getdifficulty , true , false , false } ,
{ " getrawmempool " , & getrawmempool , true , false , false } ,
{ " gettxout " , & gettxout , true , false , false } ,
@ -245,32 +245,32 @@ static const CRPCCommand vRPCCommands[] =
@@ -245,32 +245,32 @@ static const CRPCCommand vRPCCommands[] =
{ " getmininginfo " , & getmininginfo , true , false , false } ,
{ " getnetworkhashps " , & getnetworkhashps , true , false , false } ,
{ " prioritisetransaction " , & prioritisetransaction , true , false , false } ,
{ " submitblock " , & submitblock , false , true , false } ,
{ " submitblock " , & submitblock , true , true , false } ,
/* Raw transactions */
{ " createrawtransaction " , & createrawtransaction , false , false , false } ,
{ " decoderawtransaction " , & decoderawtransaction , false , false , false } ,
{ " decodescript " , & decodescript , false , false , false } ,
{ " getrawtransaction " , & getrawtransaction , false , false , false } ,
{ " createrawtransaction " , & createrawtransaction , true , false , false } ,
{ " decoderawtransaction " , & decoderawtransaction , true , false , false } ,
{ " decodescript " , & decodescript , true , false , false } ,
{ " getrawtransaction " , & getrawtransaction , true , false , false } ,
{ " sendrawtransaction " , & sendrawtransaction , false , false , false } ,
{ " signrawtransaction " , & signrawtransaction , false , false , false } , /* uses wallet if enabled */
/* Utility functions */
{ " createmultisig " , & createmultisig , true , true , false } ,
{ " validateaddress " , & validateaddress , true , false , false } , /* uses wallet if enabled */
{ " verifymessage " , & verifymessage , false , false , false } ,
{ " verifymessage " , & verifymessage , true , false , false } ,
{ " estimatefee " , & estimatefee , true , true , false } ,
{ " estimatepriority " , & estimatepriority , true , true , false } ,
# ifdef ENABLE_WALLET
/* Wallet */
{ " addmultisigaddress " , & addmultisigaddress , false , false , true } ,
{ " addmultisigaddress " , & addmultisigaddress , true , false , true } ,
{ " backupwallet " , & backupwallet , true , false , true } ,
{ " dumpprivkey " , & dumpprivkey , true , false , true } ,
{ " dumpwallet " , & dumpwallet , true , false , true } ,
{ " encryptwallet " , & encryptwallet , false , false , true } ,
{ " encryptwallet " , & encryptwallet , true , false , true } ,
{ " getaccountaddress " , & getaccountaddress , true , false , true } ,
{ " getaccount " , & getaccount , false , false , true } ,
{ " getaccount " , & getaccount , true , false , true } ,
{ " getaddressesbyaccount " , & getaddressesbyaccount , true , false , true } ,
{ " getbalance " , & getbalance , false , false , true } ,
{ " getnewaddress " , & getnewaddress , true , false , true } ,
@ -279,10 +279,10 @@ static const CRPCCommand vRPCCommands[] =
@@ -279,10 +279,10 @@ static const CRPCCommand vRPCCommands[] =
{ " getreceivedbyaddress " , & getreceivedbyaddress , false , false , true } ,
{ " gettransaction " , & gettransaction , false , false , true } ,
{ " getunconfirmedbalance " , & getunconfirmedbalance , false , false , true } ,
{ " getwalletinfo " , & getwalletinfo , true , false , true } ,
{ " importprivkey " , & importprivkey , false , false , true } ,
{ " importwallet " , & importwallet , false , false , true } ,
{ " importaddress " , & importaddress , false , false , true } ,
{ " getwalletinfo " , & getwalletinfo , false , false , true } ,
{ " importprivkey " , & importprivkey , true , false , true } ,
{ " importwallet " , & importwallet , true , false , true } ,
{ " importaddress " , & importaddress , true , false , true } ,
{ " keypoolrefill " , & keypoolrefill , true , false , true } ,
{ " listaccounts " , & listaccounts , false , false , true } ,
{ " listaddressgroupings " , & listaddressgroupings , false , false , true } ,
@ -292,16 +292,16 @@ static const CRPCCommand vRPCCommands[] =
@@ -292,16 +292,16 @@ static const CRPCCommand vRPCCommands[] =
{ " listsinceblock " , & listsinceblock , false , false , true } ,
{ " listtransactions " , & listtransactions , false , false , true } ,
{ " listunspent " , & listunspent , false , false , true } ,
{ " lockunspent " , & lockunspent , false , false , true } ,
{ " lockunspent " , & lockunspent , true , false , true } ,
{ " move " , & movecmd , false , false , true } ,
{ " sendfrom " , & sendfrom , false , false , true } ,
{ " sendmany " , & sendmany , false , false , true } ,
{ " sendtoaddress " , & sendtoaddress , false , false , true } ,
{ " setaccount " , & setaccount , true , false , true } ,
{ " settxfee " , & settxfee , false , false , true } ,
{ " signmessage " , & signmessage , false , false , true } ,
{ " settxfee " , & settxfee , true , false , true } ,
{ " signmessage " , & signmessage , true , false , true } ,
{ " walletlock " , & walletlock , true , false , true } ,
{ " walletpassphrasechange " , & walletpassphrasechange , false , false , true } ,
{ " walletpassphrasechange " , & walletpassphrasechange , true , false , true } ,
{ " walletpassphrase " , & walletpassphrase , true , false , true } ,
/* Wallet-enabled mining */