From 63a3a8941ece8505149f9414f38b4882cbedf54d Mon Sep 17 00:00:00 2001 From: J62 Date: Tue, 17 Sep 2019 05:16:09 -0700 Subject: [PATCH] updated for 1.0.14 --- README.md | 4 ++-- db.h | 4 ++-- serialize.h | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index b27ea62..c5a14b5 100644 --- a/README.md +++ b/README.md @@ -7,8 +7,8 @@ of reliable nodes via a built-in DNS server. Features: * regularly revisits known nodes to check their availability * bans nodes after enough failures, or bad behaviour -* accepts nodes down to protocol version 170002 to request new IP addresses from, - but only reports good (180004) nodes. +* accepts nodes down to protocol version 180004 to request new IP addresses from, + but only reports good (180005) nodes. * keeps statistics over (exponential) windows of 2 hours, 8 hours, 1 day and 1 week, to base decisions on. * very low memory (a few tens of megabytes) and cpu requirements. diff --git a/db.h b/db.h index eb929ef..e9948c6 100644 --- a/db.h +++ b/db.h @@ -12,8 +12,8 @@ #define MIN_RETRY 1000 -#define REQUIRED_VERSION 180004 -#define MINIMUM_VERSION_TO_AVOID_BAN_TIME 170002 +#define REQUIRED_VERSION 180005 +#define MINIMUM_VERSION_TO_AVOID_BAN_TIME 180004 static inline int GetRequireHeight(const bool testnet = fTestNet) { diff --git a/serialize.h b/serialize.h index 9e714e2..e232661 100644 --- a/serialize.h +++ b/serialize.h @@ -60,7 +60,7 @@ class CDataStream; class CAutoFile; static const unsigned int MAX_SIZE = 0x02000000; -static const int PROTOCOL_VERSION = 180004; +static const int PROTOCOL_VERSION = 180005; // Used to bypass the rule against non-const reference to temporary // where it makes sense with wrappers such as CFlatData or CTxDB