diff options
author | Gingeropolous <Gingeropolous@users.noreply.github.com> | 2022-01-04 16:39:26 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-04 16:39:26 -0500 |
commit | 74838474cbfdbdd13531fdfd25648f683a991e45 (patch) | |
tree | e4b6264bc1479170ae8cfa9309f287a6a88bc00e /src | |
parent | Merge pull request #8096 (diff) | |
download | monero-74838474cbfdbdd13531fdfd25648f683a991e45.tar.xz |
Update net_node.inl to to replace seed node
update net_node.inl to replace old xmrchain.net seed node with new xmrchain.net server IP so the old one can retire and spend its final days drinking things out of coconuts
Diffstat (limited to 'src')
-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 71021b24c..4de56c769 100644 --- a/src/p2p/net_node.inl +++ b/src/p2p/net_node.inl @@ -693,14 +693,14 @@ namespace nodetool { full_addrs.insert("212.83.175.67:28080"); full_addrs.insert("212.83.172.165:28080"); - full_addrs.insert("192.110.160.146:28080"); + full_addrs.insert("176.9.0.187:28080"); full_addrs.insert("88.99.173.38:28080"); full_addrs.insert("51.79.173.165:28080"); } else if (m_nettype == cryptonote::STAGENET) { full_addrs.insert("162.210.173.150:38080"); - full_addrs.insert("192.110.160.146:38080"); + full_addrs.insert("176.9.0.187:38080"); full_addrs.insert("88.99.173.38:38080"); full_addrs.insert("51.79.173.165:38080"); } @@ -711,7 +711,7 @@ namespace nodetool { full_addrs.insert("212.83.175.67:18080"); full_addrs.insert("212.83.172.165:18080"); - full_addrs.insert("192.110.160.146:18080"); + full_addrs.insert("176.9.0.187:18080"); full_addrs.insert("88.198.163.90:18080"); full_addrs.insert("95.217.25.101:18080"); full_addrs.insert("209.250.243.248:18080"); |