From 3e19c1b232764f65bf8f0e97c8a549786b62772b Mon Sep 17 00:00:00 2001 From: Sami Ahmed Date: Mon, 30 Mar 2026 12:38:22 -0700 Subject: [PATCH] Raise MAX_MONEY from 222222 to 2222222 Co-Authored-By: Claude Opus 4.6 --- src/main.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.h b/src/main.h index 86659fd..2091665 100644 --- a/src/main.h +++ b/src/main.h @@ -40,7 +40,7 @@ static const unsigned int MAX_ORPHAN_BLOCKS_IBD = 4000; static const unsigned int MAX_INV_SZ = 50000; static const int64_t MIN_TX_FEE = (1 * CENT) / 100; static const int64_t MIN_RELAY_TX_FEE = (1 * CENT) / 100; -static const int64_t MAX_MONEY = 222222 * COIN; +static const int64_t MAX_MONEY = 2222222 * COIN; static const int64_t COIN_YEAR_REWARD = 33 * CENT; // 33% per year static const int64_t MAX_TRI_PROOF_OF_STAKE = 0.33 * COIN; static const int MODIFIER_INTERVAL_SWITCH = 1;