diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index d3fd043dd59..1b01cb59fe5 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -239,7 +239,7 @@ add_library(bitcoin_node STATIC EXCLUDE_FROM_ALL noui.cpp policy/ephemeral_policy.cpp policy/fees/block_policy_estimator.cpp - policy/fees_args.cpp + policy/fees/block_policy_estimator_args.cpp policy/packages.cpp policy/rbf.cpp policy/settings.cpp diff --git a/src/init.cpp b/src/init.cpp index efa2741843d..a93d3203c6f 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -59,7 +59,7 @@ #include #include #include -#include +#include #include #include #include diff --git a/src/policy/fees_args.cpp b/src/policy/fees/block_policy_estimator_args.cpp similarity index 88% rename from src/policy/fees_args.cpp rename to src/policy/fees/block_policy_estimator_args.cpp index 988b6d443a5..c66b09bf6e3 100644 --- a/src/policy/fees_args.cpp +++ b/src/policy/fees/block_policy_estimator_args.cpp @@ -2,7 +2,7 @@ // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. -#include +#include #include diff --git a/src/policy/fees_args.h b/src/policy/fees/block_policy_estimator_args.h similarity index 65% rename from src/policy/fees_args.h rename to src/policy/fees/block_policy_estimator_args.h index ef5cf144af5..f206c667c23 100644 --- a/src/policy/fees_args.h +++ b/src/policy/fees/block_policy_estimator_args.h @@ -2,8 +2,8 @@ // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. -#ifndef BITCOIN_POLICY_FEES_ARGS_H -#define BITCOIN_POLICY_FEES_ARGS_H +#ifndef BITCOIN_POLICY_FEES_BLOCK_POLICY_ESTIMATOR_ARGS_H +#define BITCOIN_POLICY_FEES_BLOCK_POLICY_ESTIMATOR_ARGS_H #include @@ -12,4 +12,4 @@ class ArgsManager; /** @return The fee estimates data file path. */ fs::path FeeestPath(const ArgsManager& argsman); -#endif // BITCOIN_POLICY_FEES_ARGS_H +#endif // BITCOIN_POLICY_FEES_BLOCK_POLICY_ESTIMATOR_ARGS_H diff --git a/src/test/fuzz/policy_estimator.cpp b/src/test/fuzz/policy_estimator.cpp index 5faa91bbf0a..fee68953fde 100644 --- a/src/test/fuzz/policy_estimator.cpp +++ b/src/test/fuzz/policy_estimator.cpp @@ -4,7 +4,7 @@ #include #include -#include +#include #include #include #include diff --git a/src/test/fuzz/policy_estimator_io.cpp b/src/test/fuzz/policy_estimator_io.cpp index 89d93f4603a..3a6341248c0 100644 --- a/src/test/fuzz/policy_estimator_io.cpp +++ b/src/test/fuzz/policy_estimator_io.cpp @@ -3,7 +3,7 @@ // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include -#include +#include #include #include #include diff --git a/src/test/policyestimator_tests.cpp b/src/test/policyestimator_tests.cpp index 689a5b3b07e..0e1bfec24a8 100644 --- a/src/test/policyestimator_tests.cpp +++ b/src/test/policyestimator_tests.cpp @@ -3,7 +3,7 @@ // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include -#include +#include #include #include #include