From f2d66b7f6ea9db20833ac6d8cf99d0626e201abd Mon Sep 17 00:00:00 2001 From: Warren Togami Date: Fri, 23 Jan 2015 01:27:31 -1000 Subject: [PATCH] Litecoin: Reject peer proto version below 70002 --- src/version.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/version.h b/src/version.h index a5a72c546..aa01576c8 100644 --- a/src/version.h +++ b/src/version.h @@ -15,7 +15,7 @@ static const int PROTOCOL_VERSION = 70002; static const int INIT_PROTO_VERSION = 209; //! In this version, 'getheaders' was introduced. -static const int GETHEADERS_VERSION = 31800; +static const int GETHEADERS_VERSION = 70002; //! disconnect from peers older than this proto version static const int MIN_PEER_PROTO_VERSION = GETHEADERS_VERSION;