From 2fef5edbc4d089fc139eabb645650a3083edbe32 Mon Sep 17 00:00:00 2001 From: jl777 Date: Sun, 29 Jan 2017 22:45:22 +0200 Subject: [PATCH] test --- src/amount.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/amount.h b/src/amount.h index 6fe9fe748..4cddf541f 100644 --- a/src/amount.h +++ b/src/amount.h @@ -17,7 +17,7 @@ static const CAmount COIN = 100000000; static const CAmount CENT = 1000000; /** No amount larger than this (in satoshi) is valid */ -static CAmount MAX_MONEY = 200000000 * COIN; +CAmount MAX_MONEY = 200000000 * COIN; inline bool MoneyRange(const CAmount& nValue) { return (nValue >= 0 && nValue <= MAX_MONEY); } /** Type-safe wrapper class to for fee rates