Skip to content

Commit

Permalink
Bump fork block to March 2022
Browse files Browse the repository at this point in the history
  • Loading branch information
raipat committed Sep 1, 2021
1 parent 66f24f1 commit 160fd6f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/clientversion.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#define CLIENT_VERSION_MAJOR 1
#define CLIENT_VERSION_MINOR 1
#define CLIENT_VERSION_REVISION 1
#define CLIENT_VERSION_BUILD 10
#define CLIENT_VERSION_BUILD 11

// Converts the parameter X to a string after macro replacement on X has been performed.
// Don't merge these into one macro!
Expand Down
4 changes: 2 additions & 2 deletions src/main.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ static const int64_t MAX_MONEY = 500000000 * COIN;
static const int64_t COIN_YEAR_REWARD = 200 * CENT;
// implement consensus vote result Option B. Set Max Supply and staking to 10%
static const int64_t COIN_YEAR_REWARD_NEW = 10 * CENT;
static const int64_t RAIN_CAP = 20000000000 * COIN;
static const int CONSENSUS_CHANGE_BLOCK = 2389713; // should be around September 4th 2021
static const int64_t RAIN_CAP = 40000000000 * COIN;
static const int CONSENSUS_CHANGE_BLOCK = 2655956; // should be around March 5th 2022

inline bool MoneyRange(int64_t nValue) { return (nValue >= 0 && nValue <= MAX_MONEY); }
// Threshold for nLockTime: below this value it is interpreted as block number, otherwise as UNIX timestamp.
Expand Down

0 comments on commit 160fd6f

Please sign in to comment.