Skip to content

Commit

Permalink
Bump version to 5.0.2, bump proto version to 6500
Browse files Browse the repository at this point in the history
  • Loading branch information
216k155 committed Jun 28, 2018
1 parent d5f43ce commit 8d3f5f4
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ dnl require autoconf 2.60 (AS_ECHO/AS_ECHO_N)
AC_PREREQ([2.60])
define(_CLIENT_VERSION_MAJOR, 5)
define(_CLIENT_VERSION_MINOR, 0)
define(_CLIENT_VERSION_REVISION, 1)
define(_CLIENT_VERSION_REVISION, 2)
define(_CLIENT_VERSION_BUILD, 0)
define(_CLIENT_VERSION_IS_RELEASE, true)
define(_COPYRIGHT_YEAR, 2018)
Expand Down
2 changes: 1 addition & 1 deletion src/chainparams.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ class CMainParams : public CChainParams
//TODO: fix cyclic dependency
consensus.vDeployments[Consensus::SMART_CONTRACTS_HARDFORK].bit = 30;

nSwitchPhi2Block = 300000;
nSwitchPhi2Block = 299501;
nFirstSCBlock = 400000;
nPruneAfterHeight = 300000;
nSplitRewardBlock = 300000;
Expand Down
2 changes: 1 addition & 1 deletion src/clientversion.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
//! These need to be macros, as clientversion.cpp's and lux*-res.rc's voodoo requires it
#define CLIENT_VERSION_MAJOR 5
#define CLIENT_VERSION_MINOR 0
#define CLIENT_VERSION_REVISION 1
#define CLIENT_VERSION_REVISION 2
#define CLIENT_VERSION_BUILD 0

//! Set to true for release, false for prerelease or test build
Expand Down
10 changes: 5 additions & 5 deletions src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* network protocol versioning
*/

static const int PROTOCOL_VERSION = 69400;
static const int PROTOCOL_VERSION = 69500;

//! initial proto version, to be increased after version/verack negotiation
static const int INIT_PROTO_VERSION = 209;
Expand All @@ -20,11 +20,11 @@ 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 = 69300;
static const int MIN_PEER_PROTO_VERSION_AFTER_ENFORCEMENT = 69300;
static const int MIN_PEER_PROTO_VERSION_BEFORE_ENFORCEMENT = 69400;
static const int MIN_PEER_PROTO_VERSION_AFTER_ENFORCEMENT = 69400;

static const int MIN_INSTANTX_PROTO_VERSION = 69100;
static const int MIN_MN_PROTO_VERSION = 69400;
static const int MIN_INSTANTX_PROTO_VERSION = 69500;
static const int MIN_MN_PROTO_VERSION = 69500;

//! nTime field added to CAddress, starting with this version;
//! if possible, avoid requesting addresses nodes older than this
Expand Down

0 comments on commit 8d3f5f4

Please sign in to comment.