Skip to content

Commit

Permalink
Merge pull request #58 from SavvyBlockProject/version-0.15.1
Browse files Browse the repository at this point in the history
Changes for release v0.15.1
  • Loading branch information
tohsnoom committed Oct 4, 2018
2 parents 3161f99 + cf8a0d6 commit c64c10b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion configure.ac
Expand Up @@ -2,7 +2,7 @@ dnl require autoconf 2.60 (AS_ECHO/AS_ECHO_N)
AC_PREREQ([2.60])
define(_CLIENT_VERSION_MAJOR, 0)
define(_CLIENT_VERSION_MINOR, 15)
define(_CLIENT_VERSION_REVISION, 0)
define(_CLIENT_VERSION_REVISION, 1)
define(_CLIENT_VERSION_BUILD, 0)
define(_CLIENT_VERSION_IS_RELEASE, true)
define(_COPYRIGHT_YEAR, 2018)
Expand Down
6 changes: 3 additions & 3 deletions src/version.h
Expand Up @@ -11,7 +11,7 @@
* network protocol versioning
*/

static const int PROTOCOL_VERSION = 71027;
static const int PROTOCOL_VERSION = 71028;

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

//! disconnect from peers older than this proto version
static const int MIN_PEER_PROTO_VERSION_BEFORE_ENFORCEMENT = 70912;
static const int MIN_PEER_PROTO_VERSION_AFTER_ENFORCEMENT = 71027;
static const int MIN_PEER_PROTO_VERSION_BEFORE_ENFORCEMENT = 71027;
static const int MIN_PEER_PROTO_VERSION_AFTER_ENFORCEMENT = 71028;

//! masternodes older than this proto version use old strMessage format for mnannounce
static const int MIN_PEER_MNANNOUNCE = 71027;
Expand Down

0 comments on commit c64c10b

Please sign in to comment.