From 129b5d7dbb80ba3ea225686f77c0e72a36c5f047 Mon Sep 17 00:00:00 2001 From: Antonios Papadakis Date: Mon, 18 May 2026 12:43:05 -0500 Subject: [PATCH] Update Seed Nodes --- src/p2p/net_node.inl | 3 +++ 1 file changed, 3 insertions(+) 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; }