diff options
author | TheCharlatan <seb.kung@gmail.com> | 2023-05-24 15:55:53 +0200 |
---|---|---|
committer | TheCharlatan <seb.kung@gmail.com> | 2023-05-30 17:26:47 +0200 |
commit | c27e4bdc35bc7cedd1ee07e98a52c230241120d1 (patch) | |
tree | 389d47e5c869e1f5252b3ad143ac17bd9efd52d2 /src/common/args.cpp | |
parent | c2dae5d7d89634fbd771755ce3909719f5462f63 (diff) |
move-only: Move settings to the common library
The background of this commit is an ongoing effort to decouple the
libbitcoinkernel library from code that is not strictly required by it.
The settings code belongs into the common library and namespace, since
the kernel library should not depend on it. See doc/design/libraries.md
for more information on this rationale.
Changing the namespace of the moved functions is scripted in the
following commit.
Diffstat (limited to 'src/common/args.cpp')
-rw-r--r-- | src/common/args.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/args.cpp b/src/common/args.cpp index c9af2d7f5e..289410ecbe 100644 --- a/src/common/args.cpp +++ b/src/common/args.cpp @@ -6,6 +6,7 @@ #include <common/args.h> #include <chainparamsbase.h> +#include <common/settings.h> #include <logging.h> #include <sync.h> #include <tinyformat.h> @@ -14,7 +15,6 @@ #include <util/check.h> #include <util/fs.h> #include <util/fs_helpers.h> -#include <util/settings.h> #include <util/strencodings.h> #ifdef WIN32 |