Skip to content

Commit

Permalink
Resolved conflicts in indexdb.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
x100111010 committed Oct 21, 2024
2 parents c759870 + 82c4d2c commit 52d541a
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 52d541a

Please sign in to comment.