aboutsummaryrefslogtreecommitdiff
path: root/src/common/args.cpp
diff options
context:
space:
mode:
authorTheCharlatan <seb.kung@gmail.com>2023-05-24 15:55:53 +0200
committerTheCharlatan <seb.kung@gmail.com>2023-05-30 17:26:47 +0200
commitc27e4bdc35bc7cedd1ee07e98a52c230241120d1 (patch)
tree389d47e5c869e1f5252b3ad143ac17bd9efd52d2 /src/common/args.cpp
parentc2dae5d7d89634fbd771755ce3909719f5462f63 (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.cpp2
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