diff options
author | luigi1111 <luigi1111w@gmail.com> | 2019-07-24 14:07:29 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2019-07-24 14:07:29 -0500 |
commit | e579fe4ae0f7ce4557d8e8ab1cdd678378d8efd1 (patch) | |
tree | 4efc8e6550f0c79ffd033631f1522f38eaf27827 /src/p2p/net_node.h | |
parent | Merge pull request #5529 (diff) | |
parent | remove obsolete save_graph skeleton code (diff) | |
download | monero-e579fe4ae0f7ce4557d8e8ab1cdd678378d8efd1.tar.xz |
Merge pull request #5530
6abaaaa remove obsolete save_graph skeleton code (moneromooo-monero)
Diffstat (limited to 'src/p2p/net_node.h')
-rw-r--r-- | src/p2p/net_node.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/p2p/net_node.h b/src/p2p/net_node.h index 9ee5ce0de..50f8fe744 100644 --- a/src/p2p/net_node.h +++ b/src/p2p/net_node.h @@ -216,7 +216,6 @@ namespace nodetool m_hide_my_port(false), m_no_igd(false), m_offline(false), - m_save_graph(false), is_closing(false), m_network_id() {} @@ -400,12 +399,6 @@ namespace nodetool public: - void set_save_graph(bool save_graph) - { - m_save_graph = save_graph; - epee::net_utils::connection_basic::set_save_graph(save_graph); - } - void set_rpc_port(uint16_t rpc_port) { m_rpc_port = rpc_port; @@ -423,7 +416,6 @@ namespace nodetool bool m_hide_my_port; bool m_no_igd; bool m_offline; - std::atomic<bool> m_save_graph; std::atomic<bool> is_closing; std::unique_ptr<boost::thread> mPeersLoggerThread; //critical_section m_connections_lock; @@ -505,8 +497,6 @@ namespace nodetool extern const command_line::arg_descriptor<int64_t> arg_limit_rate_up; extern const command_line::arg_descriptor<int64_t> arg_limit_rate_down; extern const command_line::arg_descriptor<int64_t> arg_limit_rate; - - extern const command_line::arg_descriptor<bool> arg_save_graph; } POP_WARNINGS |