Line data Source code
1 : // Copyright (c) 2009-2010 Satoshi Nakamoto 2 : // Copyright (c) 2009-2018 The Bitcoin Core developers 3 : // Distributed under the MIT software license, see the accompanying 4 : // file COPYING or http://www.opensource.org/licenses/mit-license.php. 5 : 6 : #ifndef BITCOIN_AMOUNT_H 7 : #define BITCOIN_AMOUNT_H 8 : 9 : #include <stdint.h> 10 : 11 : /** Amount in satoshis (Can be negative) */ 12 : typedef int64_t CAmount; 13 : 14 : static const CAmount COIN = 100000000; 15 : 16 : /** No amount larger than this (in satoshi) is valid. 17 : * 18 : * Note that this constant is *not* the total money supply, which in Bitcoin 19 : * currently happens to be less than 21,000,000 BTC for various reasons, but 20 : * rather a sanity check. As this sanity check is used by consensus-critical 21 : * validation code, the exact value of the MAX_MONEY constant is consensus 22 : * critical; in unusual circumstances like a(nother) overflow bug that allowed 23 : * for the creation of coins out of thin air modification could lead to a fork. 24 : * */ 25 : static const CAmount MAX_MONEY = 21000000 * COIN; 26 47532472 : inline bool MoneyRange(const CAmount& nValue) { return (nValue >= 0 && nValue <= MAX_MONEY); } 27 : 28 : #endif // BITCOIN_AMOUNT_H