Skip to content

Commit 3758383

Browse files
feat: bump protocol version to distinguish v21 from v20.1
1 parent 6cb8dcd commit 3758383

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

doc/release-notes-6080.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
P2P and network changes
2+
-----------------------
3+
4+
- The protocol version has been bumped to 70232. This should be identical in behavior to 70231.

src/version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
*/
1212

1313

14-
static const int PROTOCOL_VERSION = 70231;
14+
static const int PROTOCOL_VERSION = 70232;
1515

1616
//! initial proto version, to be increased after version/verack negotiation
1717
static const int INIT_PROTO_VERSION = 209;
@@ -20,7 +20,7 @@ static const int INIT_PROTO_VERSION = 209;
2020
static const int MIN_PEER_PROTO_VERSION = 70215;
2121

2222
//! minimum proto version of masternode to accept in DKGs
23-
static const int MIN_MASTERNODE_PROTO_VERSION = 70230;
23+
static const int MIN_MASTERNODE_PROTO_VERSION = 70232;
2424

2525
//! protocol version is included in MNAUTH starting with this version
2626
static const int MNAUTH_NODE_VER_VERSION = 70218;

0 commit comments

Comments
 (0)