We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0bb102 commit a498d69Copy full SHA for a498d69
ci/test/06_script_b.sh
@@ -52,6 +52,7 @@ if [ "${RUN_TIDY}" = "true" ]; then
52
src/dbwrapper.cpp \
53
src/init \
54
src/kernel \
55
+ src/node/blockmanager_args.cpp \
56
src/node/chainstate.cpp \
57
src/node/chainstatemanager_args.cpp \
58
src/node/mempool_args.cpp \
src/node/blockmanager_args.cpp
@@ -5,8 +5,14 @@
5
#include <node/blockmanager_args.h>
6
7
#include <common/args.h>
8
+#include <node/blockstorage.h>
9
+#include <tinyformat.h>
10
+#include <util/translation.h>
11
#include <validation.h>
12
13
+#include <cstdint>
14
+#include <optional>
15
+
16
namespace node {
17
std::optional<bilingual_str> ApplyArgsManOptions(const ArgsManager& args, BlockManager::Options& opts)
18
{
0 commit comments