From e227e148b4c4f6c238b09bb4006e6abce4c6be0a Mon Sep 17 00:00:00 2001 From: Sikkie <64414667+SikkieNL@users.noreply.github.com> Date: Sat, 10 Feb 2024 17:17:54 +0100 Subject: [PATCH] Update amount.h --- src/amount.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/amount.h b/src/amount.h index 33a7ad783..1b561fd2e 100644 --- a/src/amount.h +++ b/src/amount.h @@ -27,7 +27,7 @@ extern const std::string CURRENCY_UNIT; * critical; in unusual circumstances like a(nother) overflow bug that allowed * for the creation of coins out of thin air modification could lead to a fork. * */ -static const CAmount MAX_MONEY = 47250000 * COIN; +static const CAmount MAX_MONEY = 50000000 * COIN; inline bool MoneyRange(const CAmount& nValue) { return (nValue >= 0 && nValue <= MAX_MONEY); } /** Type-safe wrapper class for fee rates