diff options
author | Cory Fields <cory-nospam-@coryfields.com> | 2022-10-04 18:15:53 +0000 |
---|---|---|
committer | Cory Fields <cory-nospam-@coryfields.com> | 2022-10-04 21:21:05 +0000 |
commit | 43b8777dc3e63f4a1b20a3cb23e44c1b9e32862b (patch) | |
tree | 8e24f0c3bfcb8bd02029a761c08ceba6c3cc0ba3 /src/external_signer.cpp | |
parent | 192325a77d593e404e74ef5e204aed8801b4e66f (diff) |
refactor: move run_command from util to common
Quoting ryanofsky: "util can be the library for things included in the kernel
which the kernel can depend on, and common can be the library for other code
that needs to be shared internally, but should not be part of the kernel or
shared externally."
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 d1eec2fd61..0e582629f7 100644 --- a/src/external_signer.cpp +++ b/src/external_signer.cpp @@ -3,9 +3,9 @@ // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <chainparams.h> +#include <common/run_command.h> #include <core_io.h> #include <psbt.h> -#include <util/run_command.h> #include <util/strencodings.h> #include <external_signer.h> |