diff options
author | Toni <matzeton@googlemail.com> | 2022-03-09 13:53:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-09 13:53:04 +0100 |
commit | f646a4bce036edfd26215b5875fe81473dbb175d (patch) | |
tree | a416221ab841c6adb443fe01c0f7c2f3dea85fc2 /utils/bitcoinnodes.sh | |
parent | 74ae315e36cf206961affa5bd2869c025e4c751f (diff) |
Improved ASN/IP update scripts and CI integration. (#1474)
* CI will print a warning if ASN/IP addresses changed.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'utils/bitcoinnodes.sh')
-rwxr-xr-x | utils/bitcoinnodes.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/bitcoinnodes.sh b/utils/bitcoinnodes.sh index 033a76713..cfc6b3e1a 100755 --- a/utils/bitcoinnodes.sh +++ b/utils/bitcoinnodes.sh @@ -5,4 +5,4 @@ # NOTE: JQ can be found at https://stedolan.github.io/jq/ -curl -s -H "Accept: application/json; indent=4" https://bitnodes.earn.com/api/v1/snapshots/latest/ | jq -r '.nodes|keys[] as $k | "\($k)"' | grep -v onion | grep -v ']' | cut -d ':' -f 1 +curl -s -H "Accept: application/json; indent=4" https://bitnodes.io/api/v1/snapshots/latest/ | jq -r '.nodes|keys[] as $k | "\($k)"' | grep -v onion | grep -v ']' | cut -d ':' -f 1 |