@ -175,45 +175,8 @@ UniValue getdifficulty(const UniValue& params, bool fHelp)
return GetDifficulty ( ) ;
}
UniValue getrawmempool ( const UniValue & params , bool fHelp )
UniValue mempoolToJSON ( bool fVerbose = false )
{
if ( fHelp | | params . size ( ) > 1 )
throw runtime_error (
" getrawmempool ( verbose ) \n "
" \n Returns all transaction ids in memory pool as a json array of string transaction ids. \n "
" \n Arguments: \n "
" 1. verbose (boolean, optional, default=false) true for a json object, false for array of transaction ids \n "
" \n Result: (for verbose = false): \n "
" [ (json array of string) \n "
" \" transactionid \" (string) The transaction id \n "
" ,... \n "
" ] \n "
" \n Result: (for verbose = true): \n "
" { (json object) \n "
" \" transactionid \" : { (json object) \n "
" \" size \" : n, (numeric) transaction size in bytes \n "
" \" fee \" : n, (numeric) transaction fee in " + CURRENCY_UNIT + " \n "
" \" time \" : n, (numeric) local time transaction entered pool in seconds since 1 Jan 1970 GMT \n "
" \" height \" : n, (numeric) block height when transaction entered pool \n "
" \" startingpriority \" : n, (numeric) priority when transaction entered pool \n "
" \" currentpriority \" : n, (numeric) transaction priority now \n "
" \" depends \" : [ (array) unconfirmed transactions used as inputs for this transaction \n "
" \" transactionid \" , (string) parent transaction id \n "
" ... ] \n "
" }, ... \n "
" } \n "
" \n Examples \n "
+ HelpExampleCli ( " getrawmempool " , " true " )
+ HelpExampleRpc ( " getrawmempool " , " true " )
) ;
LOCK ( cs_main ) ;
bool fVerbose = false ;
if ( params . size ( ) > 0 )
fVerbose = params [ 0 ] . get_bool ( ) ;
if ( fVerbose )
{
LOCK ( mempool . cs ) ;
@ -261,6 +224,47 @@ UniValue getrawmempool(const UniValue& params, bool fHelp)
}
}
UniValue getrawmempool ( const UniValue & params , bool fHelp )
{
if ( fHelp | | params . size ( ) > 1 )
throw runtime_error (
" getrawmempool ( verbose ) \n "
" \n Returns all transaction ids in memory pool as a json array of string transaction ids. \n "
" \n Arguments: \n "
" 1. verbose (boolean, optional, default=false) true for a json object, false for array of transaction ids \n "
" \n Result: (for verbose = false): \n "
" [ (json array of string) \n "
" \" transactionid \" (string) The transaction id \n "
" ,... \n "
" ] \n "
" \n Result: (for verbose = true): \n "
" { (json object) \n "
" \" transactionid \" : { (json object) \n "
" \" size \" : n, (numeric) transaction size in bytes \n "
" \" fee \" : n, (numeric) transaction fee in " + CURRENCY_UNIT + " \n "
" \" time \" : n, (numeric) local time transaction entered pool in seconds since 1 Jan 1970 GMT \n "
" \" height \" : n, (numeric) block height when transaction entered pool \n "
" \" startingpriority \" : n, (numeric) priority when transaction entered pool \n "
" \" currentpriority \" : n, (numeric) transaction priority now \n "
" \" depends \" : [ (array) unconfirmed transactions used as inputs for this transaction \n "
" \" transactionid \" , (string) parent transaction id \n "
" ... ] \n "
" }, ... \n "
" } \n "
" \n Examples \n "
+ HelpExampleCli ( " getrawmempool " , " true " )
+ HelpExampleRpc ( " getrawmempool " , " true " )
) ;
LOCK ( cs_main ) ;
bool fVerbose = false ;
if ( params . size ( ) > 0 )
fVerbose = params [ 0 ] . get_bool ( ) ;
return mempoolToJSON ( fVerbose ) ;
}
UniValue getblockhash ( const UniValue & params , bool fHelp )
{
if ( fHelp | | params . size ( ) ! = 1 )
@ -757,6 +761,16 @@ UniValue getchaintips(const UniValue& params, bool fHelp)
return res ;
}
UniValue mempoolInfoToJSON ( )
{
UniValue ret ( UniValue : : VOBJ ) ;
ret . push_back ( Pair ( " size " , ( int64_t ) mempool . size ( ) ) ) ;
ret . push_back ( Pair ( " bytes " , ( int64_t ) mempool . GetTotalTxSize ( ) ) ) ;
ret . push_back ( Pair ( " usage " , ( int64_t ) mempool . DynamicMemoryUsage ( ) ) ) ;
return ret ;
}
UniValue getmempoolinfo ( const UniValue & params , bool fHelp )
{
if ( fHelp | | params . size ( ) ! = 0 )
@ -774,12 +788,7 @@ UniValue getmempoolinfo(const UniValue& params, bool fHelp)
+ HelpExampleRpc ( " getmempoolinfo " , " " )
) ;
UniValue ret ( UniValue : : VOBJ ) ;
ret . push_back ( Pair ( " size " , ( int64_t ) mempool . size ( ) ) ) ;
ret . push_back ( Pair ( " bytes " , ( int64_t ) mempool . GetTotalTxSize ( ) ) ) ;
ret . push_back ( Pair ( " usage " , ( int64_t ) mempool . DynamicMemoryUsage ( ) ) ) ;
return ret ;
return mempoolInfoToJSON ( ) ;
}
UniValue invalidateblock ( const UniValue & params , bool fHelp )