Rename file to bootstrap_service

This commit is contained in:
Piotr Wójcik 2024-10-29 17:22:15 +01:00
commit 5ffa22069c
9 changed files with 8 additions and 9 deletions

View file

@ -2,8 +2,8 @@
#include <nano/lib/logging.hpp>
#include <nano/lib/stats.hpp>
#include <nano/lib/tomlconfig.hpp>
#include <nano/node/bootstrap/bootstrap_service.hpp>
#include <nano/node/bootstrap/database_scan.hpp>
#include <nano/node/bootstrap/service.hpp>
#include <nano/node/make_store.hpp>
#include <nano/secure/ledger.hpp>
#include <nano/secure/ledger_set_any.hpp>

View file

@ -30,6 +30,8 @@ add_library(
bootstrap/bootstrap_config.cpp
bootstrap/bootstrap_server.hpp
bootstrap/bootstrap_server.cpp
bootstrap/bootstrap_service.hpp
bootstrap/bootstrap_service.cpp
bootstrap/common.hpp
bootstrap/throttle.hpp
bootstrap/throttle.cpp
@ -39,8 +41,6 @@ add_library(
bootstrap/frontier_scan.cpp
bootstrap/peer_scoring.hpp
bootstrap/peer_scoring.cpp
bootstrap/service.hpp
bootstrap/service.cpp
cli.hpp
cli.cpp
common.hpp

View file

@ -3,8 +3,8 @@
#include <nano/lib/stats_enums.hpp>
#include <nano/lib/thread_roles.hpp>
#include <nano/node/blockprocessor.hpp>
#include <nano/node/bootstrap/bootstrap_service.hpp>
#include <nano/node/bootstrap/crawlers.hpp>
#include <nano/node/bootstrap/service.hpp>
#include <nano/node/network.hpp>
#include <nano/node/nodeconfig.hpp>
#include <nano/node/transport/transport.hpp>

View file

@ -4,7 +4,7 @@
#include <nano/lib/stats_sinks.hpp>
#include <nano/lib/timer.hpp>
#include <nano/node/active_elections.hpp>
#include <nano/node/bootstrap/service.hpp>
#include <nano/node/bootstrap/bootstrap_service.hpp>
#include <nano/node/common.hpp>
#include <nano/node/confirming_set.hpp>
#include <nano/node/election.hpp>

View file

@ -1,5 +1,5 @@
#include <nano/lib/thread_roles.hpp>
#include <nano/node/bootstrap/service.hpp>
#include <nano/node/bootstrap/bootstrap_service.hpp>
#include <nano/node/message_processor.hpp>
#include <nano/node/node.hpp>
#include <nano/node/telemetry.hpp>

View file

@ -2,7 +2,6 @@
#include <nano/lib/blocks.hpp>
#include <nano/lib/threading.hpp>
#include <nano/lib/utility.hpp>
#include <nano/node/bootstrap/service.hpp>
#include <nano/node/message_processor.hpp>
#include <nano/node/network.hpp>
#include <nano/node/node.hpp>

View file

@ -8,7 +8,7 @@
#include <nano/node/backlog_population.hpp>
#include <nano/node/bandwidth_limiter.hpp>
#include <nano/node/bootstrap/bootstrap_server.hpp>
#include <nano/node/bootstrap/service.hpp>
#include <nano/node/bootstrap/bootstrap_service.hpp>
#include <nano/node/bootstrap_weights_beta.hpp>
#include <nano/node/bootstrap_weights_live.hpp>
#include <nano/node/common.hpp>

View file

@ -1,7 +1,7 @@
#include <nano/lib/rpcconfig.hpp>
#include <nano/lib/thread_runner.hpp>
#include <nano/node/bootstrap/bootstrap_server.hpp>
#include <nano/node/bootstrap/service.hpp>
#include <nano/node/bootstrap/bootstrap_service.hpp>
#include <nano/node/ipc/ipc_server.hpp>
#include <nano/node/json_handler.hpp>
#include <nano/node/transport/transport.hpp>