2013-10-16 05:14:30 +02:00
|
|
|
### Seeds ###
|
|
|
|
|
2013-01-30 04:17:56 +01:00
|
|
|
Utility to generate the pnSeed[] array that is compiled into the client
|
2013-10-16 05:14:30 +02:00
|
|
|
(see [src/net.cpp](/src/net.cpp)).
|
2013-01-30 04:17:56 +01:00
|
|
|
|
|
|
|
The 600 seeds compiled into the 0.8 release were created from sipa's DNS seed data, like this:
|
|
|
|
|
2013-10-16 05:14:30 +02:00
|
|
|
curl -s http://bitcoin.sipa.be/seeds.txt | head -1000 | makeseeds.py
|
2013-01-30 04:17:56 +01:00
|
|
|
|
|
|
|
The input to makeseeds.py is assumed to be approximately sorted from most-reliable to least-reliable,
|
|
|
|
with IP:port first on each line (lines that don't match IPv4:port are ignored).
|