diff options
author | Gingeropolous <Gingeropolous@users.noreply.github.com> | 2019-10-13 17:13:57 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-13 17:13:57 -0400 |
commit | 6fdaaba935ae6515365e8591dd565ce9062c0ac8 (patch) | |
tree | 2d1f6d9f261c2aa28a0b59f997a2cc69d2ea2be8 /src | |
parent | Merge pull request #5978 (diff) | |
download | monero-6fdaaba935ae6515365e8591dd565ce9062c0ac8.tar.xz |
node.inl, add xmrchain.net IP to hardcoded peers
added for mainnet, testnet, and stagenet.
server is owner by snipa, both snipa and I have access to it. No idea where its hosted.
xmrchain.net is a block explorer thats been around a while.
Diffstat (limited to 'src')
-rw-r--r-- | src/p2p/net_node.inl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/p2p/net_node.inl b/src/p2p/net_node.inl index bb77ea658..594b3b348 100644 --- a/src/p2p/net_node.inl +++ b/src/p2p/net_node.inl @@ -604,11 +604,13 @@ namespace nodetool full_addrs.insert("163.172.182.165:28080"); full_addrs.insert("195.154.123.123:28080"); full_addrs.insert("212.83.172.165:28080"); + full_addrs.insert("192.110.160.146:28080"); } else if (nettype == cryptonote::STAGENET) { full_addrs.insert("162.210.173.150:38080"); full_addrs.insert("162.210.173.151:38080"); + full_addrs.insert("192.110.160.146:38080"); } else if (nettype == cryptonote::FAKECHAIN) { @@ -623,6 +625,7 @@ namespace nodetool full_addrs.insert("198.74.231.92:18080"); full_addrs.insert("195.154.123.123:18080"); full_addrs.insert("212.83.172.165:18080"); + full_addrs.insert("192.110.160.146:18080"); } return full_addrs; } |