diff options
author | Jon Atack <jon@atack.com> | 2022-08-23 23:01:12 +0200 |
---|---|---|
committer | Jon Atack <jon@atack.com> | 2022-08-24 00:00:53 +0200 |
commit | 7fd902801712c6778a31fd0c5b8a51062c8cd883 (patch) | |
tree | a54d1226a0ac0f58a21cf837b34cbaff38fe9a4d /contrib | |
parent | 6075a0be3c3c949ac5709c89ffbb64eea4839821 (diff) |
contrib: make-seeds updates for 24.x
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/seeds/makeseeds.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/contrib/seeds/makeseeds.py b/contrib/seeds/makeseeds.py index 37c6f5fd7c..eda58c370f 100755 --- a/contrib/seeds/makeseeds.py +++ b/contrib/seeds/makeseeds.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -# Copyright (c) 2013-2020 The Bitcoin Core developers +# Copyright (c) 2013-2022 The Bitcoin Core developers # Distributed under the MIT software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. # @@ -7,10 +7,10 @@ # import argparse +import collections import ipaddress import re import sys -import collections from typing import List, Dict, Union from asmap import ASMap, net_to_prefix @@ -38,7 +38,8 @@ PATTERN_AGENT = re.compile( r"0.20.(0|1|2|99)|" r"0.21.(0|1|2|99)|" r"22.(0|99)|" - r"23.99" + r"23.(0|99)|" + r"24.99" r")") def parseline(line: str) -> Union[dict, None]: |