| 814 | } |
| 815 | |
| 816 | UniValue mempoolInfoToJSON() |
| 817 | { |
| 818 | UniValue ret(UniValue::VOBJ); |
| 819 | ret.push_back(Pair("size", (int64_t) mempool.size())); |
| 820 | ret.push_back(Pair("bytes", (int64_t) mempool.GetTotalTxSize())); |
| 821 | ret.push_back(Pair("usage", (int64_t) mempool.DynamicMemoryUsage())); |
| 822 | |
| 823 | return ret; |
| 824 | } |
| 825 | |
| 826 | UniValue getmempoolinfo(const UniValue& params, bool fHelp) |
| 827 | { |
no test coverage detected