diff options
author | fanquake <fanquake@gmail.com> | 2021-09-11 12:00:31 +0800 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2021-09-30 07:42:01 +0800 |
commit | 9d0379cea6c164610d05287ae6dd4e66f35b92b3 (patch) | |
tree | dd5cd7b3194761446a4a560ecabeb3ecb208447c /src/consensus | |
parent | 863e52fe63a67fa020fb1ef527b9095a35ab77a5 (diff) |
consensus: use <cstdint> over <stdint.h> in amount.h
Diffstat (limited to 'src/consensus')
-rw-r--r-- | src/consensus/amount.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/consensus/amount.h b/src/consensus/amount.h index b01615ac65..8b41a2277d 100644 --- a/src/consensus/amount.h +++ b/src/consensus/amount.h @@ -6,7 +6,7 @@ #ifndef BITCOIN_CONSENSUS_AMOUNT_H #define BITCOIN_CONSENSUS_AMOUNT_H -#include <stdint.h> +#include <cstdint> /** Amount in satoshis (Can be negative) */ typedef int64_t CAmount; |