Skip to content

Commit

Permalink
Merge pull request #18 from 0xA001113/dev
Browse files Browse the repository at this point in the history
TN and TN11 DNS seeders
  • Loading branch information
0xA001113 authored Oct 21, 2024
2 parents 2ed9210 + 87df80a commit 82c4d2c
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions consensus/core/src/config/params.rs
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,11 @@ pub const MAINNET_PARAMS: Params = Params {
};

pub const TESTNET_PARAMS: Params = Params {
dns_seeders: &[],
dns_seeders: &[
// Official DNS seeders.
"testnet-dnsseed-1.spectre-network.org",
"testnet-dnsseed-2.spectre-network.org",
],
net: NetworkId::with_suffix(NetworkType::Testnet, 10),
genesis: TESTNET_GENESIS,
ghostdag_k: LEGACY_DEFAULT_GHOSTDAG_K,
Expand Down Expand Up @@ -400,7 +404,11 @@ pub const TESTNET_PARAMS: Params = Params {
};

pub const TESTNET11_PARAMS: Params = Params {
dns_seeders: &[],
dns_seeders: &[
// Official DNS seeders.
"testnet11-dnsseed-1.spectre-network.org",
"testnet11-dnsseed-2.spectre-network.org",
],
net: NetworkId::with_suffix(NetworkType::Testnet, 11),
genesis: TESTNET11_GENESIS,
legacy_timestamp_deviation_tolerance: LEGACY_TIMESTAMP_DEVIATION_TOLERANCE,
Expand Down

0 comments on commit 82c4d2c

Please sign in to comment.