diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-11-01 22:00:01 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-11-01 22:00:35 +0000 |
commit | 03fc731bf23ec828af1999fc8f4a651605ea6a57 (patch) | |
tree | 926327b952e03331ea846e0551061939c93b7b8a /src/p2p/net_node.h | |
parent | p2p: tone down "no incoming connections" warning to info if in peers is 0 (diff) | |
download | monero-03fc731bf23ec828af1999fc8f4a651605ea6a57.tar.xz |
p2p: less frequent incoming connections check
Diffstat (limited to 'src/p2p/net_node.h')
-rw-r--r-- | src/p2p/net_node.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/p2p/net_node.h b/src/p2p/net_node.h index 90e2f78b1..cc6e47e4f 100644 --- a/src/p2p/net_node.h +++ b/src/p2p/net_node.h @@ -308,7 +308,7 @@ namespace nodetool epee::math_helper::once_a_time_seconds<1> m_connections_maker_interval; epee::math_helper::once_a_time_seconds<60*30, false> m_peerlist_store_interval; epee::math_helper::once_a_time_seconds<60> m_gray_peerlist_housekeeping_interval; - epee::math_helper::once_a_time_seconds<900, false> m_incoming_connections_interval; + epee::math_helper::once_a_time_seconds<3600, false> m_incoming_connections_interval; std::string m_bind_ip; std::string m_port; |