mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
p2p: correct port number for seed nodes
This commit is contained in:
parent
bb07d8d7f7
commit
5f6647934b
1 changed files with 3 additions and 3 deletions
|
@ -397,8 +397,8 @@ namespace nodetool
|
||||||
full_addrs.insert("163.172.182.165:18080");
|
full_addrs.insert("163.172.182.165:18080");
|
||||||
full_addrs.insert("161.67.132.39:18080");
|
full_addrs.insert("161.67.132.39:18080");
|
||||||
full_addrs.insert("198.74.231.92:18080");
|
full_addrs.insert("198.74.231.92:18080");
|
||||||
full_addrs.insert("195.154.123.123:28080");
|
full_addrs.insert("195.154.123.123:18080");
|
||||||
full_addrs.insert("212.83.172.165:28080");
|
full_addrs.insert("212.83.172.165:18080");
|
||||||
}
|
}
|
||||||
return full_addrs;
|
return full_addrs;
|
||||||
}
|
}
|
||||||
|
@ -490,7 +490,7 @@ namespace nodetool
|
||||||
if (result.size())
|
if (result.size())
|
||||||
{
|
{
|
||||||
for (const auto& addr_string : result)
|
for (const auto& addr_string : result)
|
||||||
full_addrs.insert(addr_string + ":18080");
|
full_addrs.insert(addr_string + ":" + std::to_string(m_nettype == cryptonote::TESTNET ? ::config::testnet::P2P_DEFAULT_PORT : m_nettype == cryptonote::STAGENET ? ::config::stagenet::P2P_DEFAULT_PORT : ::config::P2P_DEFAULT_PORT));
|
||||||
}
|
}
|
||||||
++i;
|
++i;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue