diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-05-09 17:16:26 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-05-10 14:17:18 +0000 |
commit | 6abaaaa994c79cbeea37f6b0079ca6b24ecef3a5 (patch) | |
tree | 2af9aaa3eb21805b3da473cea49628ee3ee6558d /src/daemon/command_parser_executor.cpp | |
parent | Merge pull request #5509 (diff) | |
download | monero-6abaaaa994c79cbeea37f6b0079ca6b24ecef3a5.tar.xz |
remove obsolete save_graph skeleton code
Diffstat (limited to 'src/daemon/command_parser_executor.cpp')
-rw-r--r-- | src/daemon/command_parser_executor.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/daemon/command_parser_executor.cpp b/src/daemon/command_parser_executor.cpp index 17b945c9a..56d087750 100644 --- a/src/daemon/command_parser_executor.cpp +++ b/src/daemon/command_parser_executor.cpp @@ -525,18 +525,6 @@ bool t_command_parser_executor::in_peers(const std::vector<std::string>& args) return m_executor.in_peers(limit); } -bool t_command_parser_executor::start_save_graph(const std::vector<std::string>& args) -{ - if (!args.empty()) return false; - return m_executor.start_save_graph(); -} - -bool t_command_parser_executor::stop_save_graph(const std::vector<std::string>& args) -{ - if (!args.empty()) return false; - return m_executor.stop_save_graph(); -} - bool t_command_parser_executor::hard_fork_info(const std::vector<std::string>& args) { int version; |