From 375838378a650f73ab602c16b308b2ebb6fdc47a Mon Sep 17 00:00:00 2001 From: pasta Date: Tue, 25 Jun 2024 09:19:50 -0500 Subject: [PATCH] feat: bump protocol version to distinguish v21 from v20.1 --- doc/release-notes-6080.md | 4 ++++ src/version.h | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 doc/release-notes-6080.md diff --git a/doc/release-notes-6080.md b/doc/release-notes-6080.md new file mode 100644 index 0000000000..aef1db3e61 --- /dev/null +++ b/doc/release-notes-6080.md @@ -0,0 +1,4 @@ +P2P and network changes +----------------------- + +- The protocol version has been bumped to 70232. This should be identical in behavior to 70231. diff --git a/src/version.h b/src/version.h index 87ec648fc6..c170066495 100644 --- a/src/version.h +++ b/src/version.h @@ -11,7 +11,7 @@ */ -static const int PROTOCOL_VERSION = 70231; +static const int PROTOCOL_VERSION = 70232; //! initial proto version, to be increased after version/verack negotiation static const int INIT_PROTO_VERSION = 209; @@ -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 = 70232; //! protocol version is included in MNAUTH starting with this version static const int MNAUTH_NODE_VER_VERSION = 70218;