From 029561507e4df7db7ca966947befde2664be02ed Mon Sep 17 00:00:00 2001 From: Odysseas Gabrielides Date: Wed, 18 Oct 2023 17:24:47 +0300 Subject: [PATCH 1/2] bump minimum proto version --- src/version.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/version.h b/src/version.h index 0c4eccf6af30..8d678b31ce8a 100644 --- a/src/version.h +++ b/src/version.h @@ -20,7 +20,7 @@ static const int INIT_PROTO_VERSION = 209; static const int MIN_PEER_PROTO_VERSION = 70215; //! minimum proto version of masternode to accept in DKGs -static const int MIN_MASTERNODE_PROTO_VERSION = 70230; +static const int MIN_MASTERNODE_PROTO_VERSION = 70231; //! protocol version is included in MNAUTH starting with this version static const int MNAUTH_NODE_VER_VERSION = 70218; From ddb6679449ac5d453046906381ba6484f6beef74 Mon Sep 17 00:00:00 2001 From: Odysseas Gabrielides Date: Wed, 18 Oct 2023 19:04:02 +0300 Subject: [PATCH 2/2] matched PROTOCOL_VERSION --- src/version.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/version.h b/src/version.h index 8d678b31ce8a..a9a0fed853eb 100644 --- a/src/version.h +++ b/src/version.h @@ -11,7 +11,7 @@ */ -static const int PROTOCOL_VERSION = 70230; +static const int PROTOCOL_VERSION = 70231; //! initial proto version, to be increased after version/verack negotiation static const int INIT_PROTO_VERSION = 209;