From cfaf742053c53097bab614bac4e93133926907c0 Mon Sep 17 00:00:00 2001 From: Krystie Date: Fri, 3 Apr 2026 16:10:07 -0700 Subject: [PATCH] Revert hardcoded seed nodes - peer discovery is dynamic --- src/net.cpp | 7 ++----- src/net_bootstrap.h | 7 ++----- 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/src/net.cpp b/src/net.cpp index 15496b0..2bec79b 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -1389,12 +1389,9 @@ void ThreadOnionSeed(void* parg) -// Hardcoded seed nodes - full network mesh -// These nodes will be automatically connected to on first run +// Hardcoded seeds removed - peer discovery is now fully dynamic via HTTP seed list. +// See: seeds.cryptographic-triangles.org unsigned int pnSeed[] = { - 0x4ad0a713, // 74.208.167.19 (DNS3) - 0xc2e958ce, // 194.233.88.206 (DNS2) - 0x64627b3b, // 100.98.123.59 (Contabo seed server) }; void DumpAddresses() diff --git a/src/net_bootstrap.h b/src/net_bootstrap.h index 5b66eda..a7bdbc8 100644 --- a/src/net_bootstrap.h +++ b/src/net_bootstrap.h @@ -24,12 +24,9 @@ namespace NetBootstrap { NULL }; - // Hardcoded seed nodes - full network mesh - // These nodes will be automatically connected to on first run + // Hardcoded seeds removed - peer discovery is now fully dynamic via HTTP seed list. + // See: seeds.cryptographic-triangles.org static const unsigned int pnSeed[] __attribute__((unused)) = { - 0x4ad0a713, // 74.208.167.19 (DNS3) - 0xc2e958ce, // 194.233.88.206 (DNS2) - 0x64627b3b, // 100.98.123.59 (Contabo seed server) }; // Network protocol compatibility settings