diff options
author | Cory Fields <cory-nospam-@coryfields.com> | 2022-09-28 18:02:23 +0000 |
---|---|---|
committer | Cory Fields <cory-nospam-@coryfields.com> | 2022-10-04 13:51:40 +0000 |
commit | 192325a77d593e404e74ef5e204aed8801b4e66f (patch) | |
tree | 270b998e2bb48abecca0cc72ddf13134e9af8083 /src/external_signer.cpp | |
parent | b2da6dd943292b9e08e95fc81577b9fc99d16134 (diff) |
kernel: move RunCommandParseJSON to its own file
Because libbitcoinkernel does not include this new object, this has the
side-effect of eliminating the unnecessary boost::process dependency.
Diffstat (limited to 'src/external_signer.cpp')
-rw-r--r-- | src/external_signer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/external_signer.cpp b/src/external_signer.cpp index 094314e878..d1eec2fd61 100644 --- a/src/external_signer.cpp +++ b/src/external_signer.cpp @@ -5,8 +5,8 @@ #include <chainparams.h> #include <core_io.h> #include <psbt.h> +#include <util/run_command.h> #include <util/strencodings.h> -#include <util/system.h> #include <external_signer.h> #include <algorithm> |