Skip to content

Commit 7fd9028

Browse files
committed
contrib: make-seeds updates for 24.x
1 parent 6075a0b commit 7fd9028

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

contrib/seeds/makeseeds.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
#!/usr/bin/env python3
2-
# Copyright (c) 2013-2020 The Bitcoin Core developers
2+
# Copyright (c) 2013-2022 The Bitcoin Core developers
33
# Distributed under the MIT software license, see the accompanying
44
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
55
#
66
# Generate seeds.txt from Pieter's DNS seeder
77
#
88

99
import argparse
10+
import collections
1011
import ipaddress
1112
import re
1213
import sys
13-
import collections
1414
from typing import List, Dict, Union
1515

1616
from asmap import ASMap, net_to_prefix
@@ -38,7 +38,8 @@
3838
r"0.20.(0|1|2|99)|"
3939
r"0.21.(0|1|2|99)|"
4040
r"22.(0|99)|"
41-
r"23.99"
41+
r"23.(0|99)|"
42+
r"24.99"
4243
r")")
4344

4445
def parseline(line: str) -> Union[dict, None]:

0 commit comments

Comments
 (0)