aboutsummaryrefslogtreecommitdiff
path: root/src/external_signer.h
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/external_signer.h
parent54569cc6d6f54788169061004026e62e1c08440e (diff)
downloadbitcoin-f4652bf1259d5c52ff0d500c732f40ba41256817.tar.xz
refactor: add missing includes to external signer code
Diffstat (limited to 'src/external_signer.h')
-rw-r--r--src/external_signer.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/external_signer.h b/src/external_signer.h
index 15436213b2..070589dac0 100644
--- a/src/external_signer.h
+++ b/src/external_signer.h
@@ -5,11 +5,13 @@
#ifndef BITCOIN_EXTERNAL_SIGNER_H
#define BITCOIN_EXTERNAL_SIGNER_H
-#include <stdexcept>
-#include <string>
#include <univalue.h>
#include <util/system.h>
+#include <stdexcept>
+#include <string>
+#include <vector>
+
#ifdef ENABLE_EXTERNAL_SIGNER
struct PartiallySignedTransaction;