mirror of
https://github.com/monero-project/monero.git
synced 2025-12-16 08:03:58 -05:00
New interactive daemon command 'print_net_stats': Global traffic stats
This commit is contained in:
parent
f2f725d8db
commit
c23ea7962d
13 changed files with 182 additions and 2 deletions
|
|
@ -127,6 +127,13 @@ bool t_command_parser_executor::print_connections(const std::vector<std::string>
|
|||
return m_executor.print_connections();
|
||||
}
|
||||
|
||||
bool t_command_parser_executor::print_net_stats(const std::vector<std::string>& args)
|
||||
{
|
||||
if (!args.empty()) return false;
|
||||
|
||||
return m_executor.print_net_stats();
|
||||
}
|
||||
|
||||
bool t_command_parser_executor::print_blockchain_info(const std::vector<std::string>& args)
|
||||
{
|
||||
if(!args.size())
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue