From c164f503850f58a81de5a80703ce1aebe380d809 Mon Sep 17 00:00:00 2001 From: 0xA001113 <0xeuler@proton.me> Date: Thu, 17 Oct 2024 10:34:51 +0200 Subject: [PATCH 1/2] TN DNS seeders --- domain/dagconfig/params.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/domain/dagconfig/params.go b/domain/dagconfig/params.go index a7b61bf..6442051 100644 --- a/domain/dagconfig/params.go +++ b/domain/dagconfig/params.go @@ -283,7 +283,11 @@ var TestnetParams = Params{ Net: appmessage.Testnet, RPCPort: "18210", DefaultPort: "18211", - DNSSeeds: []string{}, // NOTE: Will be added later with privacy feature. + DNSSeeds: []string{ + // Official DNS seeders. + "testnet-dnsseed-1.spectre-network.org", + "testnet-dnsseed-2.spectre-network.org", + }, // DAG parameters GenesisBlock: &testnetGenesisBlock, From a36348c53bd4d9317e455a079e8062d825a77983 Mon Sep 17 00:00:00 2001 From: 0xA001113 <0xeuler@proton.me> Date: Thu, 17 Oct 2024 11:01:22 +0200 Subject: [PATCH 2/2] Go format fix --- domain/dagconfig/params.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/domain/dagconfig/params.go b/domain/dagconfig/params.go index 6442051..75fc39f 100644 --- a/domain/dagconfig/params.go +++ b/domain/dagconfig/params.go @@ -283,7 +283,7 @@ var TestnetParams = Params{ Net: appmessage.Testnet, RPCPort: "18210", DefaultPort: "18211", - DNSSeeds: []string{ + DNSSeeds: []string{ // Official DNS seeders. "testnet-dnsseed-1.spectre-network.org", "testnet-dnsseed-2.spectre-network.org",