diff options
author | Ava Chow <github@achow101.com> | 2024-08-16 12:53:21 -0400 |
---|---|---|
committer | Ava Chow <github@achow101.com> | 2024-08-16 12:53:21 -0400 |
commit | 41ad84a00c20f54b520aab7f6f975231da0ee2d0 (patch) | |
tree | eec8b7c59178dfe0b1bef869763a89688d0a7b05 /contrib/seeds | |
parent | d8fd1e0fafa144a9ff96fc646cf9f21e220d5cd6 (diff) |
seeds: Use fjahr's more up to date asmap
Diffstat (limited to 'contrib/seeds')
-rw-r--r-- | contrib/seeds/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/seeds/README.md b/contrib/seeds/README.md index 935ac8d4bd..e63c17c385 100644 --- a/contrib/seeds/README.md +++ b/contrib/seeds/README.md @@ -15,7 +15,7 @@ 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://testnet.achownodes.xyz/seeds.txt.gz | gzip -dc > seeds_test.txt -curl https://bitcoin.sipa.be/asmap-filled.dat > asmap-filled.dat +curl https://raw.githubusercontent.com/fjahr/asmap-data/main/latest_asmap.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 python3 makeseeds.py -a asmap-filled.dat -s seeds_test.txt > nodes_test.txt |