]> Git Repo - VerusCoin.git/commitdiff
test
authorjl777 <[email protected]>
Sun, 29 Jan 2017 20:45:22 +0000 (22:45 +0200)
committerjl777 <[email protected]>
Sun, 29 Jan 2017 20:45:22 +0000 (22:45 +0200)
src/amount.h

index 6fe9fe7481e9f237f9cd74a8142a86edac16b705..4cddf541f242fe0e5ac41bb57ff811eb80748df2 100644 (file)
@@ -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
This page took 0.025306 seconds and 4 git commands to generate.