diff options
author | fanquake <fanquake@gmail.com> | 2021-04-13 15:02:10 +0800 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2021-04-13 20:09:33 +0800 |
commit | f4652bf1259d5c52ff0d500c732f40ba41256817 (patch) | |
tree | a04165b097cff9d19d3fe26ab8d2ef753b31c127 /src/wallet/external_signer_scriptpubkeyman.cpp | |
parent | 54569cc6d6f54788169061004026e62e1c08440e (diff) |
refactor: add missing includes to external signer code
Diffstat (limited to 'src/wallet/external_signer_scriptpubkeyman.cpp')
-rw-r--r-- | src/wallet/external_signer_scriptpubkeyman.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/wallet/external_signer_scriptpubkeyman.cpp b/src/wallet/external_signer_scriptpubkeyman.cpp index a113c128d7..fe2c810afa 100644 --- a/src/wallet/external_signer_scriptpubkeyman.cpp +++ b/src/wallet/external_signer_scriptpubkeyman.cpp @@ -6,6 +6,13 @@ #include <external_signer.h> #include <wallet/external_signer_scriptpubkeyman.h> +#include <iostream> +#include <memory> +#include <stdexcept> +#include <string> +#include <utility> +#include <vector> + #ifdef ENABLE_EXTERNAL_SIGNER bool ExternalSignerScriptPubKeyMan::SetupDescriptor(std::unique_ptr<Descriptor> desc) |