From d09071da5bc997f2de1f55ca7a9babc3d7619329 Mon Sep 17 00:00:00 2001 From: fanquake Date: Sat, 11 Sep 2021 10:29:00 +0800 Subject: [MOVEONLY] consensus: move amount.h into consensus Move amount.h to consensus/amount.h. Renames, adds missing and removes uneeded includes. --- src/interfaces/node.h | 2 +- src/interfaces/wallet.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/interfaces') diff --git a/src/interfaces/node.h b/src/interfaces/node.h index 770b1b8753..34fdde3774 100644 --- a/src/interfaces/node.h +++ b/src/interfaces/node.h @@ -5,7 +5,7 @@ #ifndef BITCOIN_INTERFACES_NODE_H #define BITCOIN_INTERFACES_NODE_H -#include // For CAmount +#include #include #include // For NodeId #include // For banmap_t diff --git a/src/interfaces/wallet.h b/src/interfaces/wallet.h index 6766e0510f..490563426c 100644 --- a/src/interfaces/wallet.h +++ b/src/interfaces/wallet.h @@ -5,7 +5,7 @@ #ifndef BITCOIN_INTERFACES_WALLET_H #define BITCOIN_INTERFACES_WALLET_H -#include // For CAmount +#include #include // For ChainClient #include // For CKeyID and CScriptID (definitions needed in CTxDestination instantiation) #include