From ee07408ce1df44bd3124fe64c240735cbde17880 Mon Sep 17 00:00:00 2001 From: wowario <38101080+wowario@users.noreply.github.com> Date: Tue, 3 Jul 2018 16:41:11 +0300 Subject: [PATCH] Add stagenet ips --- src/p2p/net_node.inl | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/p2p/net_node.inl b/src/p2p/net_node.inl index dd06f7ee3..ddc3c3271 100755 --- a/src/p2p/net_node.inl +++ b/src/p2p/net_node.inl @@ -372,13 +372,20 @@ namespace nodetool if (nettype == cryptonote::TESTNET) { full_addrs.insert("206.189.166.14:11180"); full_addrs.insert("104.236.48.55:11180"); - } else { + } + else if (nettype == cryptonote::STAGENET) + { + full_addrs.insert("206.189.166.14:38080"); + full_addrs.insert("104.236.48.55:38080"); + } + else + { full_addrs.insert("66.70.218.230:34567"); full_addrs.insert("34.209.48.213:34567"); full_addrs.insert("159.65.91.59:34567"); full_addrs.insert("138.197.31.246:34567"); - } + return full_addrs; }