diff options
Diffstat (limited to '')
-rw-r--r-- | src/daemon/command_parser_executor.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/daemon/command_parser_executor.cpp b/src/daemon/command_parser_executor.cpp index 7b0f4a66b..51e3231e5 100644 --- a/src/daemon/command_parser_executor.cpp +++ b/src/daemon/command_parser_executor.cpp @@ -75,6 +75,13 @@ bool t_command_parser_executor::show_difficulty(const std::vector<std::string>& return m_executor.show_difficulty(); } +bool t_command_parser_executor::show_status(const std::vector<std::string>& args) +{ + if (!args.empty()) return false; + + return m_executor.show_status(); +} + bool t_command_parser_executor::print_connections(const std::vector<std::string>& args) { if (!args.empty()) return false; |