]>
Commit | Line | Data |
---|---|---|
a372168e MF |
1 | // Copyright (c) 2009-2010 Satoshi Nakamoto |
2 | // Copyright (c) 2009-2014 The Bitcoin developers | |
e2efdf39 | 3 | // Distributed under the MIT software license, see the accompanying |
a372168e MF |
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 | typedef int64_t CAmount; | |
12 | ||
e2efdf39 | 13 | #endif // BITCOIN_AMOUNT_H |