From b6a13fd80b0a22a0eeaa3910049bc9fa7f9e58f8 Mon Sep 17 00:00:00 2001 From: lateminer <9951982+lateminer@users.noreply.github.com> Date: Thu, 22 Feb 2024 21:44:06 +0100 Subject: [PATCH] net: Bump `MIN_PEER_PROTO_VERSION` to 70015 --- src/version.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/version.h b/src/version.h index 90694db3d0..010fb1a268 100644 --- a/src/version.h +++ b/src/version.h @@ -18,7 +18,7 @@ static const int OLD_VERSION = 70015; static const int INIT_PROTO_VERSION = 209; //! disconnect from peers older than this proto version -static const int MIN_PEER_PROTO_VERSION = 70012; +static const int MIN_PEER_PROTO_VERSION = 70015; //! BIP 0031, pong message, is enabled for all versions AFTER this one static const int BIP0031_VERSION = 60000;