From a2c5eaaf4761177bfe0ece6ac1714440533668fb Mon Sep 17 00:00:00 2001 From: Thiago Silva Date: Tue, 11 Apr 2023 10:08:38 -0300 Subject: [PATCH] Rename bootstrap_ascending.?pp files to service.?pp --- nano/core_test/bootstrap_ascending.cpp | 2 +- nano/node/CMakeLists.txt | 4 ++-- .../{bootstrap_ascending.cpp => service.cpp} | 2 +- .../{bootstrap_ascending.hpp => service.hpp} | 0 nano/node/json_handler.cpp | 2 +- nano/node/network.cpp | 2 +- nano/node/node.hpp | 2 +- nano/slow_test/bootstrap.cpp | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) rename nano/node/bootstrap_ascending/{bootstrap_ascending.cpp => service.cpp} (99%) rename nano/node/bootstrap_ascending/{bootstrap_ascending.hpp => service.hpp} (100%) diff --git a/nano/core_test/bootstrap_ascending.cpp b/nano/core_test/bootstrap_ascending.cpp index b4764a10d..cdc2e5c38 100644 --- a/nano/core_test/bootstrap_ascending.cpp +++ b/nano/core_test/bootstrap_ascending.cpp @@ -1,5 +1,5 @@ #include -#include +#include #include #include diff --git a/nano/node/CMakeLists.txt b/nano/node/CMakeLists.txt index badd88b8c..580410288 100644 --- a/nano/node/CMakeLists.txt +++ b/nano/node/CMakeLists.txt @@ -61,8 +61,8 @@ add_library( bootstrap_ascending/account_sets.cpp bootstrap_ascending/iterators.hpp bootstrap_ascending/iterators.cpp - bootstrap_ascending/bootstrap_ascending.hpp - bootstrap_ascending/bootstrap_ascending.cpp + bootstrap_ascending/service.hpp + bootstrap_ascending/service.cpp cli.hpp cli.cpp common.hpp diff --git a/nano/node/bootstrap_ascending/bootstrap_ascending.cpp b/nano/node/bootstrap_ascending/service.cpp similarity index 99% rename from nano/node/bootstrap_ascending/bootstrap_ascending.cpp rename to nano/node/bootstrap_ascending/service.cpp index abf2508f3..f9331cd82 100644 --- a/nano/node/bootstrap_ascending/bootstrap_ascending.cpp +++ b/nano/node/bootstrap_ascending/service.cpp @@ -1,6 +1,6 @@ #include #include -#include +#include #include #include #include diff --git a/nano/node/bootstrap_ascending/bootstrap_ascending.hpp b/nano/node/bootstrap_ascending/service.hpp similarity index 100% rename from nano/node/bootstrap_ascending/bootstrap_ascending.hpp rename to nano/node/bootstrap_ascending/service.hpp diff --git a/nano/node/json_handler.cpp b/nano/node/json_handler.cpp index 7f1e3905c..61f7357e9 100644 --- a/nano/node/json_handler.cpp +++ b/nano/node/json_handler.cpp @@ -2,7 +2,7 @@ #include #include #include -#include +#include #include #include #include diff --git a/nano/node/network.cpp b/nano/node/network.cpp index dac9dc1d4..4f9a8c7e1 100644 --- a/nano/node/network.cpp +++ b/nano/node/network.cpp @@ -1,6 +1,6 @@ #include #include -#include +#include #include #include #include diff --git a/nano/node/node.hpp b/nano/node/node.hpp index 4dc607a34..53f6aef1a 100644 --- a/nano/node/node.hpp +++ b/nano/node/node.hpp @@ -13,7 +13,7 @@ #include #include #include -#include +#include #include #include #include diff --git a/nano/slow_test/bootstrap.cpp b/nano/slow_test/bootstrap.cpp index fb8200344..7004a74ca 100644 --- a/nano/slow_test/bootstrap.cpp +++ b/nano/slow_test/bootstrap.cpp @@ -1,6 +1,6 @@ #include #include -#include +#include #include #include #include