PIVX Core  5.6.99
P2P Digital Currency
amount.h
Go to the documentation of this file.
1 // Copyright (c) 2009-2010 Satoshi Nakamoto
2 // Copyright (c) 2009-2017 The Bitcoin developers
3 // Copyright (c) 2017-2020 The PIVX Core developers
4 // Distributed under the MIT software license, see the accompanying
5 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
6 
7 #ifndef PIVX_AMOUNT_H
8 #define PIVX_AMOUNT_H
9 
10 #include <stdint.h>
11 
13 typedef int64_t CAmount;
14 
15 static const CAmount COIN = 100000000;
16 static const CAmount CENT = 1000000;
17 
18 #endif // PIVX_AMOUNT_H
int64_t CAmount
Amount in PIV (Can be negative)
Definition: amount.h:13