@ -249,6 +249,7 @@ static const CRPCCommand vRPCCommands[] =
{ " settxfee " , & settxfee , false , false } ,
{ " settxfee " , & settxfee , false , false } ,
{ " getblocktemplate " , & getblocktemplate , true , false } ,
{ " getblocktemplate " , & getblocktemplate , true , false } ,
{ " submitblock " , & submitblock , false , false } ,
{ " submitblock " , & submitblock , false , false } ,
{ " setmininput " , & setmininput , false , false } ,
{ " listsinceblock " , & listsinceblock , false , false } ,
{ " listsinceblock " , & listsinceblock , false , false } ,
{ " dumpprivkey " , & dumpprivkey , true , false } ,
{ " dumpprivkey " , & dumpprivkey , true , false } ,
{ " importprivkey " , & importprivkey , false , false } ,
{ " importprivkey " , & importprivkey , false , false } ,
@ -1149,6 +1150,7 @@ Array RPCConvertValues(const std::string &strMethod, const std::vector<std::stri
if ( strMethod = = " getnetworkhashps " & & n > 0 ) ConvertTo < boost : : int64_t > ( params [ 0 ] ) ;
if ( strMethod = = " getnetworkhashps " & & n > 0 ) ConvertTo < boost : : int64_t > ( params [ 0 ] ) ;
if ( strMethod = = " sendtoaddress " & & n > 1 ) ConvertTo < double > ( params [ 1 ] ) ;
if ( strMethod = = " sendtoaddress " & & n > 1 ) ConvertTo < double > ( params [ 1 ] ) ;
if ( strMethod = = " settxfee " & & n > 0 ) ConvertTo < double > ( params [ 0 ] ) ;
if ( strMethod = = " settxfee " & & n > 0 ) ConvertTo < double > ( params [ 0 ] ) ;
if ( strMethod = = " setmininput " & & n > 0 ) ConvertTo < double > ( params [ 0 ] ) ;
if ( strMethod = = " getreceivedbyaddress " & & n > 1 ) ConvertTo < boost : : int64_t > ( params [ 1 ] ) ;
if ( strMethod = = " getreceivedbyaddress " & & n > 1 ) ConvertTo < boost : : int64_t > ( params [ 1 ] ) ;
if ( strMethod = = " getreceivedbyaccount " & & n > 1 ) ConvertTo < boost : : int64_t > ( params [ 1 ] ) ;
if ( strMethod = = " getreceivedbyaccount " & & n > 1 ) ConvertTo < boost : : int64_t > ( params [ 1 ] ) ;
if ( strMethod = = " listreceivedbyaddress " & & n > 0 ) ConvertTo < boost : : int64_t > ( params [ 0 ] ) ;
if ( strMethod = = " listreceivedbyaddress " & & n > 0 ) ConvertTo < boost : : int64_t > ( params [ 0 ] ) ;