Skip to content

Commit

Permalink
v4.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
prasannavl authored Oct 15, 2024
1 parent 0a179f3 commit 12ff038
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
dnl require autoconf 2.60 (AS_ECHO/AS_ECHO_N)
AC_PREREQ([2.60])
define(_CLIENT_VERSION_MAJOR, 4)
define(_CLIENT_VERSION_MINOR, 1)
define(_CLIENT_VERSION_REVISION, 12)
define(_CLIENT_VERSION_MINOR, 2)
define(_CLIENT_VERSION_REVISION, 0)
define(_CLIENT_VERSION_BUILD, 0)
define(_CLIENT_VERSION_RC, 0)
define(_CLIENT_VERSION_IS_RELEASE, true)
Expand Down
2 changes: 1 addition & 1 deletion src/chainparams.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ class CMainParams : public CChainParams {
consensus.DF21GrandCentralEpilogueHeight = 2574000; // Jan 10th, 2023.
consensus.DF22MetachainHeight = 3462000; // Nov 15th, 2023.
consensus.DF23Height = 4006000; // May 23th, 2024. Tentative date, might change on stable release.
consensus.DF24Height = std::numeric_limits<int>::max();
consensus.DF24Height = std::numeric_limits<int>::max(); // TODO: Target in 2 weeks

consensus.pos.diffLimit = uint256S("00000fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff");
// consensus.pos.nTargetTimespan = 14 * 24 * 60 * 60; // two weeks
Expand Down
2 changes: 1 addition & 1 deletion src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ static const int INIT_PROTO_VERSION = 209;

// TODO: Alias this to the latest network upgrade height that the node supports
// as they are synonymous.
static const int PROTOCOL_VERSION = 70038;
static const int PROTOCOL_VERSION = 70039;

// TODO: Set this as the previous successful network upgrade height
// pre-node release. Each version can supports connecting from
Expand Down

0 comments on commit 12ff038

Please sign in to comment.