v5.5.4: Add hardcoded seed nodes for automatic network mesh
Build All Platforms / test-linux-unit (push) Failing after 40s
Build All Platforms / build-linux-qt (push) Failing after 40s
Build All Platforms / build-linux-daemon (push) Failing after 40s
Build All Platforms / build-windows-qt (push) Has been cancelled
Build All Platforms / build-windows-daemon (push) Has been cancelled
Build All Platforms / build-macos (push) Has been cancelled
Build All Platforms / release (push) Has been cancelled

- Hardcoded DNS3 (74.208.167.19), DNS2 (194.233.88.206), and Contabo (100.98.123.59) as fixed seeds
- Nodes will automatically connect to these on first run
- No manual addnode configuration needed
- Full mesh network connectivity built into the code
This commit is contained in:
Krystie
2026-04-03 15:55:51 -07:00
parent 069f42d6d0
commit 308f8a5f5c
3 changed files with 11 additions and 5 deletions
+5 -2
View File
@@ -1389,9 +1389,12 @@ void ThreadOnionSeed(void* parg)
// Hardcoded seeds removed - peer discovery is now fully dynamic via HTTP seed list.
// See: seeds.cryptographic-triangles.org
// Hardcoded seed nodes - full network mesh
// These nodes will be automatically connected to on first run
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()