diff options
author | Andrew Chow <github@achow101.com> | 2023-08-08 10:57:31 -0400 |
---|---|---|
committer | Andrew Chow <github@achow101.com> | 2023-08-14 17:38:27 -0400 |
commit | 7a172c76d2361fc3cdf6345590e26c79a7821672 (patch) | |
tree | f31f48f1870110717fe4988ac73f775c90871bdd /src/interfaces | |
parent | 145f36ec81e79d2e391847520364c2420ef0e0e8 (diff) |
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.
Diffstat (limited to 'src/interfaces')
-rw-r--r-- | src/interfaces/wallet.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/interfaces/wallet.h b/src/interfaces/wallet.h index 9d8bebb406..9987681367 100644 --- a/src/interfaces/wallet.h +++ b/src/interfaces/wallet.h @@ -5,12 +5,12 @@ #ifndef BITCOIN_INTERFACES_WALLET_H #define BITCOIN_INTERFACES_WALLET_H +#include <addresstype.h> #include <consensus/amount.h> -#include <interfaces/chain.h> // For ChainClient -#include <pubkey.h> // For CKeyID and CScriptID (definitions needed in CTxDestination instantiation) +#include <interfaces/chain.h> +#include <pubkey.h> #include <script/script.h> -#include <script/standard.h> // For CTxDestination -#include <support/allocators/secure.h> // For SecureString +#include <support/allocators/secure.h> #include <util/fs.h> #include <util/message.h> #include <util/result.h> |