diff options
author | j-berman <justinberman@protonmail.com> | 2022-11-14 16:54:45 -0800 |
---|---|---|
committer | j-berman <justinberman@protonmail.com> | 2022-11-15 18:02:25 -0800 |
commit | 146cac02cae2b4c7cfc0e737574adc72094d24f1 (patch) | |
tree | 997a0dd9a4d83b8d1e1ff5c44cb10c59d40c6641 /src/p2p | |
parent | Merge pull request #8594 (diff) | |
download | monero-146cac02cae2b4c7cfc0e737574adc72094d24f1.tar.xz |
p2p: fix back ping to discover healthy peers to connect to
Diffstat (limited to 'src/p2p')
-rw-r--r-- | src/p2p/net_node.inl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/p2p/net_node.inl b/src/p2p/net_node.inl index f33ce977d..f1e538f22 100644 --- a/src/p2p/net_node.inl +++ b/src/p2p/net_node.inl @@ -2413,7 +2413,7 @@ namespace nodetool return false; } return true; - }); + }, "0.0.0.0", m_ssl_support); if(!r) { LOG_WARNING_CC(context, "Failed to call connect_async, network error."); |