Skip to content

Commit 370aab4

Browse files
author
Lucas Betschart
committed
Use seeds from current Bitcoin Core
1 parent 9737e21 commit 370aab4

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

coin.h

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,18 @@
77

88
#include <string>
99

10-
static const std::string mainnet_seeds[] = {"dnsseed.bluematt.me", "bitseed.xf2.org", "dnsseed.bitcoin.dashjr.org", "seed.bitcoin.sipa.be", ""};
11-
static const std::string testnet_seeds[] = {"testnet-seed.alexykot.me",
12-
"testnet-seed.bitcoin.petertodd.org",
10+
static const std::string mainnet_seeds[] = {"seed.bitcoin.sipa.be", // Pieter Wuille, only supports x1, x5, x9, and xd
11+
"dnsseed.bluematt.me", // Matt Corallo, only supports x9
12+
"dnsseed.bitcoin.dashjr.org", // Luke Dashjr
13+
"seed.bitcoinstats.com", // Christian Decker, supports x1 - xf
14+
"seed.bitcoin.jonasschnelli.ch", // Jonas Schnelli, only supports x1, x5, x9, and xd
15+
"seed.btc.petertodd.org", // Peter Todd, only supports x1, x5, x9, and xd
16+
""};
17+
18+
static const std::string testnet_seeds[] = {"testnet-seed.bitcoin.jonasschnelli.ch",
19+
"seed.tbtc.petertodd.org",
20+
"seed.testnet.bitcoin.sprovoost.nl",
1321
"testnet-seed.bluematt.me",
14-
"testnet-seed.bitcoin.schildbach.de",
1522
""};
1623

1724
static const int mainnet_port = 8333;

0 commit comments

Comments
 (0)