From 1a810ca07d63aab38b496a1b2e6377b7f8b9543e Mon Sep 17 00:00:00 2001 From: Odysseas Gabrielides Date: Tue, 28 Feb 2023 17:59:57 +0200 Subject: [PATCH] chore: Bump MIN_MASTERNODE_PROTO_VERSION for v19 (#5223) ## Issue being fixed or feature implemented ## What was done? `MIN_MASTERNODE_PROTO_VERSION` was bumped to match latest `PROTOCOL_VERSION`. ## How Has This Been Tested? ## Breaking Changes ## Checklist: - [x] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have added or updated relevant unit/integration/functional/e2e tests - [ ] I have made corresponding changes to the documentation **For repository code-owners and collaborators only** - [x] I have assigned this pull request to a milestone --- src/version.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/version.h b/src/version.h index c8aa41bf0e..96bad2d23a 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 = 70221; +static const int MIN_MASTERNODE_PROTO_VERSION = 70227; //! protocol version is included in MNAUTH starting with this version static const int MNAUTH_NODE_VER_VERSION = 70218;