@ -341,8 +341,6 @@ std::string EntryDescriptionString()
" \" modifiedfee \" : n, (numeric) transaction fee with fee deltas used for mining priority \n "
" \" modifiedfee \" : n, (numeric) transaction fee with fee deltas used for mining priority \n "
" \" time \" : n, (numeric) local time transaction entered pool in seconds since 1 Jan 1970 GMT \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 "
" \" height \" : n, (numeric) block height when transaction entered pool \n "
" \" startingpriority \" : n, (numeric) DEPRECATED. Priority when transaction entered pool \n "
" \" currentpriority \" : n, (numeric) DEPRECATED. Transaction priority now \n "
" \" descendantcount \" : n, (numeric) number of in-mempool descendant transactions (including this one) \n "
" \" descendantcount \" : n, (numeric) number of in-mempool descendant transactions (including this one) \n "
" \" descendantsize \" : n, (numeric) virtual transaction size of in-mempool descendants (including this one) \n "
" \" descendantsize \" : n, (numeric) virtual transaction size of in-mempool descendants (including this one) \n "
" \" descendantfees \" : n, (numeric) modified fees (see above) of in-mempool descendants (including this one) \n "
" \" descendantfees \" : n, (numeric) modified fees (see above) of in-mempool descendants (including this one) \n "
@ -363,8 +361,6 @@ void entryToJSON(UniValue &info, const CTxMemPoolEntry &e)
info . push_back ( Pair ( " modifiedfee " , ValueFromAmount ( e . GetModifiedFee ( ) ) ) ) ;
info . push_back ( Pair ( " modifiedfee " , ValueFromAmount ( e . GetModifiedFee ( ) ) ) ) ;
info . push_back ( Pair ( " time " , e . GetTime ( ) ) ) ;
info . push_back ( Pair ( " time " , e . GetTime ( ) ) ) ;
info . push_back ( Pair ( " height " , ( int ) e . GetHeight ( ) ) ) ;
info . push_back ( Pair ( " height " , ( int ) e . GetHeight ( ) ) ) ;
info . push_back ( Pair ( " startingpriority " , e . GetPriority ( e . GetHeight ( ) ) ) ) ;
info . push_back ( Pair ( " currentpriority " , e . GetPriority ( chainActive . Height ( ) ) ) ) ;
info . push_back ( Pair ( " descendantcount " , e . GetCountWithDescendants ( ) ) ) ;
info . push_back ( Pair ( " descendantcount " , e . GetCountWithDescendants ( ) ) ) ;
info . push_back ( Pair ( " descendantsize " , e . GetSizeWithDescendants ( ) ) ) ;
info . push_back ( Pair ( " descendantsize " , e . GetSizeWithDescendants ( ) ) ) ;
info . push_back ( Pair ( " descendantfees " , e . GetModFeesWithDescendants ( ) ) ) ;
info . push_back ( Pair ( " descendantfees " , e . GetModFeesWithDescendants ( ) ) ) ;