We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6075a0b commit 7fd9028Copy full SHA for 7fd9028
contrib/seeds/makeseeds.py
@@ -1,16 +1,16 @@
1
#!/usr/bin/env python3
2
-# Copyright (c) 2013-2020 The Bitcoin Core developers
+# Copyright (c) 2013-2022 The Bitcoin Core developers
3
# Distributed under the MIT software license, see the accompanying
4
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
5
#
6
# Generate seeds.txt from Pieter's DNS seeder
7
8
9
import argparse
10
+import collections
11
import ipaddress
12
import re
13
import sys
-import collections
14
from typing import List, Dict, Union
15
16
from asmap import ASMap, net_to_prefix
@@ -38,7 +38,8 @@
38
r"0.20.(0|1|2|99)|"
39
r"0.21.(0|1|2|99)|"
40
r"22.(0|99)|"
41
- r"23.99"
+ r"23.(0|99)|"
42
+ r"24.99"
43
r")")
44
45
def parseline(line: str) -> Union[dict, None]:
0 commit comments