Add print_pl_stats daemon command

This commit is contained in:
Miguel Herranz
2017-02-23 18:20:17 +01:00
parent d666339853
commit 3bdda60f3e
5 changed files with 44 additions and 0 deletions

View File

@@ -51,6 +51,13 @@ bool t_command_parser_executor::print_peer_list(const std::vector<std::string>&
return m_executor.print_peer_list();
}
bool t_command_parser_executor::print_peer_list_stats(const std::vector<std::string>& args)
{
if (!args.empty()) return false;
return m_executor.print_peer_list_stats();
}
bool t_command_parser_executor::save_blockchain(const std::vector<std::string>& args)
{
if (!args.empty()) return false;