# Conflicts: # .gitignore # contrib/seeds/README.md # doc/README.md # doc/README_windows.txt # doc/release-process.md # qa/rpc-tests/README.md # src/Makefile.qt.include # src/Makefile.qttest.include # src/Makefile.test.include # src/bitcoind.cpp # src/qt/forms/intro.ui # src/qt/test/test_main.cpp # src/rpc/mining.cpp # src/rpc/rawtransaction.cpp # src/validation.cpp # src/wallet/rpcdump.cpp # src/wallet/rpcwallet.cpp
20 lines
667 B
Markdown
20 lines
667 B
Markdown
# Seeds
|
|
|
|
Utility to generate the seeds.txt list that is compiled into the client
|
|
(see [src/chainparamsseeds.h](/src/chainparamsseeds.h) and other utilities in [contrib/seeds](/contrib/seeds)).
|
|
|
|
Be sure to update `PATTERN_AGENT` in `makeseeds.py` to include the current version,
|
|
and remove old versions as necessary.
|
|
|
|
The seeds compiled into the release are created from poolers's DNS seed data, like this:
|
|
|
|
curl -s https://www.litecoinpool.org/seeds.txt > seeds_main.txt
|
|
python3 makeseeds.py < seeds_main.txt > nodes_main.txt
|
|
python3 generate-seeds.py . > ../../src/chainparamsseeds.h
|
|
|
|
## Dependencies
|
|
|
|
Ubuntu:
|
|
|
|
sudo apt-get install python3-dnspython
|