aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2017-02-10 10:58:17 +0100
committerWladimir J. van der Laan <laanwj@gmail.com>2017-02-10 11:04:33 +0100
commitbfa9393c06decdcb679f82350102863f0b4ca7a8 (patch)
treee2c559f98e81b681ee885d915f5fc6317ccce3bd
parent4dfac2c95084dd0bcf0d7d5dc2e9d60f027a7be4 (diff)
downloadbitcoin-bfa9393c06decdcb679f82350102863f0b4ca7a8.tar.xz
contrib/seeds: Update PATTERN_AGENT
gmaxwell: Adds the newest versions, drops everything multiple softforks ago.
-rw-r--r--contrib/seeds/README.md3
-rwxr-xr-xcontrib/seeds/makeseeds.py2
2 files changed, 4 insertions, 1 deletions
diff --git a/contrib/seeds/README.md b/contrib/seeds/README.md
index aa97dafdb5..afe902fd7f 100644
--- a/contrib/seeds/README.md
+++ b/contrib/seeds/README.md
@@ -3,6 +3,9 @@
Utility to generate the seeds.txt list that is compiled into the client
(see [src/chainparamsseeds.h](/src/chainparamsseeds.h) and other utilities in [contrib/seeds](/contrib/seeds)).
+Be sure to update `PATTERN_AGENT` in `makeseeds.py` to include the current version,
+and remove old versions as necessary.
+
The seeds compiled into the release are created from sipa's DNS seed data, like this:
curl -s http://bitcoin.sipa.be/seeds.txt > seeds_main.txt
diff --git a/contrib/seeds/makeseeds.py b/contrib/seeds/makeseeds.py
index 33fbb5851e..34f0f57671 100755
--- a/contrib/seeds/makeseeds.py
+++ b/contrib/seeds/makeseeds.py
@@ -30,7 +30,7 @@ import collections
PATTERN_IPV4 = re.compile(r"^((\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})):(\d+)$")
PATTERN_IPV6 = re.compile(r"^\[([0-9a-z:]+)\]:(\d+)$")
PATTERN_ONION = re.compile(r"^([abcdefghijklmnopqrstuvwxyz234567]{16}\.onion):(\d+)$")
-PATTERN_AGENT = re.compile(r"^(\/Satoshi:0\.8\.6\/|\/Satoshi:0\.9\.(2|3|4|5)\/|\/Satoshi:0\.10\.\d{1,2}\/|\/Satoshi:0\.11\.\d{1,2}\/)$")
+PATTERN_AGENT = re.compile(r"^(/Satoshi:0.12.(0|1|99)/|/Satoshi:0.13.(0|1|2|99)/)$")
def parseline(line):
sline = line.split()