From 4be1068f8a5618056bafd06bdef7c5ede840e19f Mon Sep 17 00:00:00 2001 From: wowario Date: Wed, 14 Jul 2021 15:09:39 +0300 Subject: [PATCH] add seed nodes --- src/p2p/net_node.inl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/p2p/net_node.inl b/src/p2p/net_node.inl index f1bff39a4..28b194c12 100644 --- a/src/p2p/net_node.inl +++ b/src/p2p/net_node.inl @@ -692,7 +692,7 @@ namespace nodetool if (m_nettype == cryptonote::TESTNET) { full_addrs.insert("207.254.29.107:11180"); - full_addrs.insert("51.81.32.130:11180"); + full_addrs.insert("135.148.138.255:11180"); } else if (m_nettype == cryptonote::STAGENET) { @@ -709,6 +709,8 @@ namespace nodetool full_addrs.insert("188.166.237.187:34567"); // sg1.wownodes.com full_addrs.insert("51.161.131.176:34567"); // node.suchwow.xyz full_addrs.insert("167.114.196.241:34567"); // wowbux.org + full_addrs.insert("135.148.138.255:34567"); + full_addrs.insert("207.254.29.107:34567"); } return full_addrs; }