consensus: use <cstdint> over <stdint.h> in amount.h

This commit is contained in:
fanquake 2021-09-11 12:00:31 +08:00
parent 863e52fe63
commit 9d0379cea6
No known key found for this signature in database
GPG Key ID: 2EEB9F5CC09526C1

View File

@ -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;