diff --git a/src/p2p/net_node.inl b/src/p2p/net_node.inl index 7e2a6d0f281..8513d483f67 100644 --- a/src/p2p/net_node.inl +++ b/src/p2p/net_node.inl @@ -603,9 +603,11 @@ namespace nodetool std::set full_addrs; if (nettype == cryptonote::TESTNET) { + full_addrs.insert("testnet.node.getswap.eu:29949"); } else if (nettype == cryptonote::STAGENET) { + full_addrs.insert("stagenet.node.getswap.eu:39949"); } else if (nettype == cryptonote::FAKECHAIN) { @@ -613,6 +615,7 @@ namespace nodetool else { full_addrs.insert("node.getswap.eu:19949"); + full_addrs.insert("node2.getswap.eu:19949"); } return full_addrs; }