From 160fd6ff348c50fd4702865bafa221c59ba15ad1 Mon Sep 17 00:00:00 2001 From: Raipat Date: Wed, 1 Sep 2021 20:43:35 +0200 Subject: [PATCH] Bump fork block to March 2022 --- src/clientversion.h | 2 +- src/main.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/clientversion.h b/src/clientversion.h index d98e8e6..2ef156a 100644 --- a/src/clientversion.h +++ b/src/clientversion.h @@ -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! diff --git a/src/main.h b/src/main.h index 290d124..262d321 100644 --- a/src/main.h +++ b/src/main.h @@ -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.