mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
p2p: fix spurious warning when we're connected to at last one seed
This commit is contained in:
parent
907292dfb4
commit
b818522d29
1 changed files with 8 additions and 2 deletions
|
@ -1541,6 +1541,7 @@ namespace nodetool
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
size_t try_count = 0;
|
size_t try_count = 0;
|
||||||
|
bool is_connected_to_at_least_one_seed_node = false;
|
||||||
size_t current_index = crypto::rand_idx(m_seed_nodes.size());
|
size_t current_index = crypto::rand_idx(m_seed_nodes.size());
|
||||||
const net_server& server = m_network_zones.at(epee::net_utils::zone::public_).m_net_server;
|
const net_server& server = m_network_zones.at(epee::net_utils::zone::public_).m_net_server;
|
||||||
while(true)
|
while(true)
|
||||||
|
@ -1548,7 +1549,11 @@ namespace nodetool
|
||||||
if(server.is_stop_signal_sent())
|
if(server.is_stop_signal_sent())
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
if(try_to_connect_and_handshake_with_new_peer(m_seed_nodes[current_index], true))
|
peerlist_entry pe_seed{};
|
||||||
|
pe_seed.adr = m_seed_nodes[current_index];
|
||||||
|
if (is_peer_used(pe_seed))
|
||||||
|
is_connected_to_at_least_one_seed_node = true;
|
||||||
|
else if (try_to_connect_and_handshake_with_new_peer(m_seed_nodes[current_index], true))
|
||||||
break;
|
break;
|
||||||
if(++try_count > m_seed_nodes.size())
|
if(++try_count > m_seed_nodes.size())
|
||||||
{
|
{
|
||||||
|
@ -1571,7 +1576,8 @@ namespace nodetool
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
MWARNING("Failed to connect to any of seed peers, continuing without seeds");
|
if (!is_connected_to_at_least_one_seed_node)
|
||||||
|
MWARNING("Failed to connect to any of seed peers, continuing without seeds");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue