Skip to content

Commit

Permalink
consensus: Set mainnet hard fork date to April 24, 2024
Browse files Browse the repository at this point in the history
  • Loading branch information
lateminer committed Jan 24, 2024
1 parent c1e5fa7 commit 475373b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/consensus/params.h
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ struct Params {
bool IsProtocolV1RetargetingFixed(int64_t nTime) const { return nTime > nProtocolV1RetargetingFixedTime && nTime != 1395631999; }
bool IsProtocolV2(int64_t nTime) const { return nTime > nProtocolV2Time && nTime != 1407053678; }
bool IsProtocolV3(int64_t nTime) const { return nTime > nProtocolV3Time && nTime != 1444028400; }
bool IsProtocolV3_1(int64_t nTime) const { return nTime > nProtocolV3_1Time && nTime != 1667779200; }
bool IsProtocolV3_1(int64_t nTime) const { return nTime > nProtocolV3_1Time && nTime != 1713938400; }
int nLastPOWBlock;
int nStakeTimestampMask;
int nCoinbaseMaturity;
Expand Down
2 changes: 1 addition & 1 deletion src/kernel/chainparams.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ class CMainParams : public CChainParams {
consensus.nProtocolV1RetargetingFixedTime = 1395631999;
consensus.nProtocolV2Time = 1407053625;
consensus.nProtocolV3Time = 1444028400;
consensus.nProtocolV3_1Time = 4102437600;
consensus.nProtocolV3_1Time = 1713938400;
consensus.nLastPOWBlock = 10000;
consensus.nStakeTimestampMask = 0xf; // 15
consensus.nCoinbaseMaturity = 500;
Expand Down

0 comments on commit 475373b

Please sign in to comment.