diff options
author | Riccardo Spagni <ric@spagni.net> | 2018-04-12 11:02:46 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2018-04-12 11:02:46 +0200 |
commit | 3d6636e79c041b6ec44044e3640a7b9b4bf2126e (patch) | |
tree | 1027c1c1d5905b77d0dc97f8e32dbe5951fa4594 | |
parent | Merge pull request #3468 (diff) | |
parent | p2p: correct port number for seed nodes (diff) | |
download | monero-3d6636e79c041b6ec44044e3640a7b9b4bf2126e.tar.xz |
Merge pull request #3471
5f664793 p2p: correct port number for seed nodes (stoffu)
-rw-r--r-- | src/p2p/net_node.inl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/p2p/net_node.inl b/src/p2p/net_node.inl index 54875e619..3b0d1c394 100644 --- a/src/p2p/net_node.inl +++ b/src/p2p/net_node.inl @@ -397,8 +397,8 @@ namespace nodetool full_addrs.insert("163.172.182.165:18080"); full_addrs.insert("161.67.132.39:18080"); full_addrs.insert("198.74.231.92:18080"); - full_addrs.insert("195.154.123.123:28080"); - full_addrs.insert("212.83.172.165:28080"); + full_addrs.insert("195.154.123.123:18080"); + full_addrs.insert("212.83.172.165:18080"); } return full_addrs; } @@ -490,7 +490,7 @@ namespace nodetool if (result.size()) { 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; } |