Skip to content

Commit

Permalink
Added a reserve domain for seed node lists
Browse files Browse the repository at this point in the history
  • Loading branch information
SChernykh committed Sep 30, 2023
1 parent 27375e7 commit d99a48d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/p2p_server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
LOG_CATEGORY(P2PServer)

static constexpr char saved_peer_list_file_name[] = "p2pool_peers.txt";
static const char* seed_nodes[] = { "seeds.p2pool.io", ""};
static const char* seed_nodes_mini[] = { "seeds-mini.p2pool.io", "" };
static const char* seed_nodes[] = { "seeds.p2pool.io", "main.p2poolpeers.net", ""};
static const char* seed_nodes_mini[] = { "seeds-mini.p2pool.io", "mini.p2poolpeers.net", "" };

static constexpr int DEFAULT_BACKLOG = 16;
static constexpr uint64_t DEFAULT_BAN_TIME = 600;
Expand Down

0 comments on commit d99a48d

Please sign in to comment.