diff options
author | Ava Chow <github@achow101.com> | 2024-04-30 14:18:27 -0400 |
---|---|---|
committer | Ava Chow <github@achow101.com> | 2024-08-16 11:25:14 -0400 |
commit | 0676515397fcc8fb580973047e60279ce65bec48 (patch) | |
tree | 7692ef428d7e99e07d57db776826ad1606eaf5fa /contrib | |
parent | 5bab3175a663610070c1000dd4211a58490e5023 (diff) |
seeds: Also pull from achow101 seeder
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/seeds/README.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/seeds/README.md b/contrib/seeds/README.md index ad1ac4a64d..1e79937361 100644 --- a/contrib/seeds/README.md +++ b/contrib/seeds/README.md @@ -8,11 +8,12 @@ and remove old versions as necessary (at a minimum when SeedsServiceFlags() changes its default return value, as those are the services which seeds are added to addrman with). -The seeds compiled into the release are created from sipa's DNS seed and AS map +The seeds compiled into the release are created from sipa's and achow101's DNS seed and AS map data. Run the following commands from the `/contrib/seeds` directory: ``` curl https://bitcoin.sipa.be/seeds.txt.gz | gzip -dc > seeds_main.txt +curl https://mainnet.achownodes.xyz/seeds.txt.gz | gzip -dc >> seeds_main.txt curl https://bitcoin.sipa.be/asmap-filled.dat > asmap-filled.dat python3 makeseeds.py -a asmap-filled.dat -s seeds_main.txt > nodes_main.txt cat nodes_main_manual.txt >> nodes_main.txt |