From 7a172c76d2361fc3cdf6345590e26c79a7821672 Mon Sep 17 00:00:00 2001 From: Andrew Chow Date: Tue, 8 Aug 2023 10:57:31 -0400 Subject: Move CTxDestination to its own file CTxDestination is really our internal representation of an address and doesn't really have anything to do with standard script types, so move them to their own file. --- src/wallet/scriptpubkeyman.h | 1 + src/wallet/test/util.h | 2 +- src/wallet/test/wallet_tests.cpp | 1 + src/wallet/wallet.h | 1 + 4 files changed, 4 insertions(+), 1 deletion(-) (limited to 'src/wallet') diff --git a/src/wallet/scriptpubkeyman.h b/src/wallet/scriptpubkeyman.h index 00159abbef..c775d26c4f 100644 --- a/src/wallet/scriptpubkeyman.h +++ b/src/wallet/scriptpubkeyman.h @@ -5,6 +5,7 @@ #ifndef BITCOIN_WALLET_SCRIPTPUBKEYMAN_H #define BITCOIN_WALLET_SCRIPTPUBKEYMAN_H +#include #include #include #include