@ -360,7 +360,7 @@ UniValue createrawtransaction(const JSONRPCRequest& request)
@@ -360,7 +360,7 @@ UniValue createrawtransaction(const JSONRPCRequest& request)
" it is not stored in the wallet or transmitted to the network. \n "
" \n Arguments: \n "
" 1. \" inputs \" (string , required) A json array of json objects \n "
" 1. \" inputs \" (array , required) A json array of json objects \n "
" [ \n "
" { \n "
" \" txid \" : \" id \" , (string, required) The transaction id \n "
@ -369,7 +369,7 @@ UniValue createrawtransaction(const JSONRPCRequest& request)
@@ -369,7 +369,7 @@ UniValue createrawtransaction(const JSONRPCRequest& request)
" } \n "
" ,... \n "
" ] \n "
" 2. \" outputs \" (string , required) a json object with outputs \n "
" 2. \" outputs \" (object , required) a json object with outputs \n "
" { \n "
" \" address \" : x.xxx, (numeric or string, required) The key is the bitcoin address, the numeric value (can be string) is the " + CURRENCY_UNIT + " amount \n "
" \" data \" : \" hex \" (string, required) The key is \" data \" , the value is hex encoded data \n "
@ -936,7 +936,7 @@ static const CRPCCommand commands[] =
@@ -936,7 +936,7 @@ static const CRPCCommand commands[] =
{ // category name actor (function) okSafeMode
// --------------------- ------------------------ ----------------------- ----------
{ " rawtransactions " , " getrawtransaction " , & getrawtransaction , true , { " txid " , " verbose " } } ,
{ " rawtransactions " , " createrawtransaction " , & createrawtransaction , true , { " transact io ns" , " outputs " , " locktime " } } ,
{ " rawtransactions " , " createrawtransaction " , & createrawtransaction , true , { " input s " , " outputs " , " locktime " } } ,
{ " rawtransactions " , " decoderawtransaction " , & decoderawtransaction , true , { " hexstring " } } ,
{ " rawtransactions " , " decodescript " , & decodescript , true , { " hexstring " } } ,
{ " rawtransactions " , " sendrawtransaction " , & sendrawtransaction , false , { " hexstring " , " allowhighfees " } } ,