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/external_signer.h | |
parent | 54569cc6d6f54788169061004026e62e1c08440e (diff) |
refactor: add missing includes to external signer code
Diffstat (limited to 'src/external_signer.h')
-rw-r--r-- | src/external_signer.h | 6 |
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; |