From a82f16368967b2e9f7b51fdf83d78ced88969478 Mon Sep 17 00:00:00 2001 From: Sunny King Date: Mon, 23 Jul 2012 18:25:34 +0100 Subject: [PATCH] PPCoin: Keep MIN_PROTO_VERSION at 209 to conform to Bitcoin (Revert the MIN_PROTO_VERSION change from merge commit 0561bbd) --- src/version.h | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/src/version.h b/src/version.h index 29efa06..bccea96 100644 --- a/src/version.h +++ b/src/version.h @@ -39,7 +39,9 @@ extern const std::string CLIENT_DATE; static const int PROTOCOL_VERSION = 60001; // earlier versions not supported as of Feb 2012, and are disconnected -static const int MIN_PROTO_VERSION = 60001; +// NOTE: as of bitcoin v0.6 message serialization (vSend, vRecv) still +// uses MIN_PROTO_VERSION(209), where message format uses PROTOCOL_VERSION +static const int MIN_PROTO_VERSION = 209; // nTime field added to CAddress, starting with this version; // if possible, avoid requesting addresses nodes older than this -- 1.7.1