Browse Source

test

pull/4/head
jl777 7 years ago
parent
commit
2fef5edbc4
  1. 2
      src/amount.h

2
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

Loading…
Cancel
Save