daemon: add a print_pool_stats daemon command

Helps see what's going on now that Monero is getting used
This commit is contained in:
moneromooo-monero
2016-10-23 12:11:07 +01:00
parent 4f6ea2eb6a
commit 839280d5fc
6 changed files with 73 additions and 0 deletions

View File

@@ -222,6 +222,13 @@ bool t_command_parser_executor::print_transaction_pool_short(const std::vector<s
return m_executor.print_transaction_pool_short();
}
bool t_command_parser_executor::print_transaction_pool_stats(const std::vector<std::string>& args)
{
if (!args.empty()) return false;
return m_executor.print_transaction_pool_stats();
}
bool t_command_parser_executor::start_mining(const std::vector<std::string>& args)
{
if(!args.size())