aboutsummaryrefslogtreecommitdiff
path: root/src/init
diff options
context:
space:
mode:
authorBen Woosley <ben.woosley@gmail.com>2023-03-06 23:41:46 +0100
committerTheCharlatan <seb.kung@gmail.com>2023-03-23 12:52:00 +0100
commit18fb36367a28819bd5ab402344802796a1248979 (patch)
treef3b9230dd86440f68d1bad93040470e503f886f9 /src/init
parent40e1c4d4024b8ad35f2511b2e10bf80c5531dfde (diff)
downloadbitcoin-18fb36367a28819bd5ab402344802796a1248979.tar.xz
refactor: Extract util/fs_helpers from util/system
This is an extraction of filesystem related functions from util/system into their own utility file. The background of this commit is an ongoing effort to decouple the libbitcoinkernel library from the ArgsManager defined in system.h. Moving these functions out of system.h allows including them from a separate source file without including the ArgsManager definitions from system.h.
Diffstat (limited to 'src/init')
-rw-r--r--src/init/common.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/init/common.cpp b/src/init/common.cpp
index 791424f5f6..216de3aecd 100644
--- a/src/init/common.cpp
+++ b/src/init/common.cpp
@@ -11,6 +11,7 @@
#include <logging.h>
#include <node/interface_ui.h>
#include <tinyformat.h>
+#include <util/fs_helpers.h>
#include <util/string.h>
#include <util/system.h>
#include <util/time.h>