diff options
author | Andrew Chow <github@achow101.com> | 2023-08-08 10:39:01 -0400 |
---|---|---|
committer | Andrew Chow <github@achow101.com> | 2023-08-14 17:38:27 -0400 |
commit | 86ea8bed5473f400f7a93fcc455393a574a2f319 (patch) | |
tree | e395a5ecbfd4faa78b80a39dcdf10d06fd733eea /src/interfaces | |
parent | b81ebff0d99c45c071b999796b8ae3f0f2517b22 (diff) |
Move CScriptID to script.{h/cpp}
CScriptID should be next to CScript just as CKeyID is next to CPubKey
Diffstat (limited to 'src/interfaces')
-rw-r--r-- | src/interfaces/wallet.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/interfaces/wallet.h b/src/interfaces/wallet.h index 8c31112fc9..9d8bebb406 100644 --- a/src/interfaces/wallet.h +++ b/src/interfaces/wallet.h @@ -8,6 +8,7 @@ #include <consensus/amount.h> #include <interfaces/chain.h> // For ChainClient #include <pubkey.h> // For CKeyID and CScriptID (definitions needed in CTxDestination instantiation) +#include <script/script.h> #include <script/standard.h> // For CTxDestination #include <support/allocators/secure.h> // For SecureString #include <util/fs.h> |