From 2291a9679593825ca7ee815a35619f17918bb9de Mon Sep 17 00:00:00 2001 From: Asurar Date: Sat, 14 Sep 2024 15:01:43 +0200 Subject: [PATCH] P2P: Add latest clearnet mainnet seed nodes. (#281) Add Monerod latest clearnet mainnet seed nodes --- p2p/p2p-core/src/network_zones/clear.rs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/p2p/p2p-core/src/network_zones/clear.rs b/p2p/p2p-core/src/network_zones/clear.rs index 192e363..acde368 100644 --- a/p2p/p2p-core/src/network_zones/clear.rs +++ b/p2p/p2p-core/src/network_zones/clear.rs @@ -54,8 +54,13 @@ impl NetworkZone for ClearNet { const NAME: &'static str = "ClearNet"; const SEEDS: &'static [Self::Addr] = &[ - ip_v4(37, 187, 74, 171, 18080), + ip_v4(176, 9, 0, 187, 18080), + ip_v4(88, 198, 163, 90, 18080), + ip_v4(66, 85, 74, 134, 18080), + ip_v4(51, 79, 173, 165, 18080), ip_v4(192, 99, 8, 110, 18080), + ip_v4(37, 187, 74, 171, 18080), + ip_v4(77, 172, 183, 193, 18080), ]; const ALLOW_SYNC: bool = true;