Skip to content

Commit

Permalink
fixing problem with vSeeds not being queried
Browse files Browse the repository at this point in the history
  • Loading branch information
koad committed Oct 9, 2020
1 parent 6143f06 commit f471f70
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/chainparams.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,8 @@ class CMainParams : public CChainParams {
assert(genesis.hashMerkleRoot == uint256S("0x94cc5850896994d3964bd56de89473936cab4471fa432a4ffe53c470f1e56c5f"));

// Note that of those with the service bits flag, most only support a subset of possible options
vSeeds.emplace_back("hard-seeder-01.canadaecoin.ca", true); // hosted by the Canada eCoin Community Foundation
vSeeds.emplace_back("hard-seeder-02.canadaecoin.ca", true);
vSeeds.emplace_back("hard-seeder-01.canadaecoin.ca"); // hosted by the Canada eCoin Community Foundation
vSeeds.emplace_back("hard-seeder-02.canadaecoin.ca");

base58Prefixes[PUBKEY_ADDRESS] = std::vector<unsigned char>(1,28);
base58Prefixes[SCRIPT_ADDRESS] = std::vector<unsigned char>(1,5);
Expand Down Expand Up @@ -226,7 +226,7 @@ class CTestNetParams : public CChainParams {
vFixedSeeds.clear();
vSeeds.clear();
// nodes with support for servicebits filtering should be at the top
vSeeds.emplace_back("testnet-seeder-01.canadaecoin.ca", true);
vSeeds.emplace_back("testnet-seeder-01.canadaecoin.ca");

base58Prefixes[PUBKEY_ADDRESS] = std::vector<unsigned char>(1,87);
base58Prefixes[SCRIPT_ADDRESS] = std::vector<unsigned char>(1,196);
Expand Down

0 comments on commit f471f70

Please sign in to comment.