From 0317ce8943b2eea6d1876b5d676ccfe7bdd9d0ff Mon Sep 17 00:00:00 2001 From: Ross Nicoll Date: Sun, 24 Aug 2014 12:04:54 +0100 Subject: [PATCH] Changed protocol version number to the less extreme 70003. Changed minimum protocol version to 70002 to block out pre-1.6 nodes. --- src/version.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/version.h b/src/version.h index b2d8627c3..f117d2f05 100644 --- a/src/version.h +++ b/src/version.h @@ -27,13 +27,13 @@ extern const std::string CLIENT_DATE; // network protocol versioning // -static const int PROTOCOL_VERSION = 80000; +static const int PROTOCOL_VERSION = 70003; // intial proto version, to be increased after version/verack negotiation static const int INIT_PROTO_VERSION = 209; // disconnect from peers older than this proto version -static const int MIN_PEER_PROTO_VERSION = 70001; +static const int MIN_PEER_PROTO_VERSION = 70002; // nTime field added to CAddress, starting with this version; // if possible, avoid requesting addresses nodes older than this