aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/external_signer_scriptpubkeyman.cpp
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2021-04-13 15:02:10 +0800
committerfanquake <fanquake@gmail.com>2021-04-13 20:09:33 +0800
commitf4652bf1259d5c52ff0d500c732f40ba41256817 (patch)
treea04165b097cff9d19d3fe26ab8d2ef753b31c127 /src/wallet/external_signer_scriptpubkeyman.cpp
parent54569cc6d6f54788169061004026e62e1c08440e (diff)
downloadbitcoin-f4652bf1259d5c52ff0d500c732f40ba41256817.tar.xz
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.cpp7
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)