Skip to content

Commit aea85bc

Browse files
Increse protocol version
1 parent 2532f3b commit aea85bc

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ dnl require autoconf 2.60 (AS_ECHO/AS_ECHO_N)
22
AC_PREREQ([2.60])
33
define(_CLIENT_VERSION_MAJOR, 2)
44
define(_CLIENT_VERSION_MINOR, 1)
5-
define(_CLIENT_VERSION_REVISION, 6)
5+
define(_CLIENT_VERSION_REVISION, 7)
66
define(_CLIENT_VERSION_BUILD, 0)
77
define(_CLIENT_VERSION_IS_RELEASE, true)
88
define(_COPYRIGHT_YEAR, 2019)

src/version.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* network protocol versioning
1212
*/
1313

14-
static const int PROTOCOL_VERSION = 70718;
14+
static const int PROTOCOL_VERSION = 70719;
1515

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

2222
//! disconnect from peers older than this proto version
23-
static const int MIN_PEER_PROTO_VERSION_BEFORE_ENFORCEMENT = 70717;
24-
static const int MIN_PEER_PROTO_VERSION_AFTER_ENFORCEMENT = 70717;
23+
static const int MIN_PEER_PROTO_VERSION_BEFORE_ENFORCEMENT = 70718;
24+
static const int MIN_PEER_PROTO_VERSION_AFTER_ENFORCEMENT = 70718;
2525

2626
//! masternodes older than this proto version use old strMessage format for mnannounce
2727
static const int MIN_PEER_MNANNOUNCE = 70913;

0 commit comments

Comments
 (0)