BSHA3  0.17.99
P2P Blockchain, based on Bitcoin
amount.h
Go to the documentation of this file.
1 // Copyright (c) 2009-2010 Satoshi Nakamoto
2 // Copyright (c) 2009-2016 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 
12 typedef int64_t CAmount;
13 
14 static const CAmount COIN = 100000000;
15 
25 static const CAmount MAX_MONEY = 21000000 * COIN;
26 inline bool MoneyRange(const CAmount& nValue) { return (nValue >= 0 && nValue <= MAX_MONEY); }
27 
28 #endif // BITCOIN_AMOUNT_H
bool MoneyRange(const CAmount &nValue)
Definition: amount.h:26
int64_t CAmount
Amount in satoshis (Can be negative)
Definition: amount.h:12