diff --git a/src/chainparams.cpp b/src/chainparams.cpp index 5915d4cdafc..8f87b45162f 100644 --- a/src/chainparams.cpp +++ b/src/chainparams.cpp @@ -162,7 +162,7 @@ class CMainParams : public CChainParams { // Note that of those with the service bits flag, most only support a subset of possible options vSeeds.emplace_back("seed.multidoge.org", true); - vSeeds.emplace_back("seed2.multidoge.org"); + vSeeds.emplace_back("seed2.multidoge.org", false); base58Prefixes[PUBKEY_ADDRESS] = std::vector(1,30); base58Prefixes[SCRIPT_ADDRESS] = std::vector(1,22); @@ -322,7 +322,7 @@ class CTestNetParams : public CChainParams { vSeeds.clear(); // nodes with support for servicebits filtering should be at the top - vSeeds.emplace_back("testseed.jrn.me.uk"); + vSeeds.emplace_back("testseed.jrn.me.uk", false); base58Prefixes[PUBKEY_ADDRESS] = std::vector(1,113); // 0x71 base58Prefixes[SCRIPT_ADDRESS] = std::vector(1,196); // 0xc4 diff --git a/src/chainparams.h b/src/chainparams.h index cc87a77ece8..9fbde8eb24c 100644 --- a/src/chainparams.h +++ b/src/chainparams.h @@ -17,7 +17,7 @@ struct CDNSSeedData { std::string host; bool supportsServiceBitsFiltering; - CDNSSeedData(const std::string &strHost, bool supportsServiceBitsFilteringIn = false) : host(strHost), supportsServiceBitsFiltering(supportsServiceBitsFilteringIn) {} + CDNSSeedData(const std::string &strHost, bool supportsServiceBitsFilteringIn) : host(strHost), supportsServiceBitsFiltering(supportsServiceBitsFilteringIn) {} }; struct SeedSpec6 {