diff --git a/nano/node/CMakeLists.txt b/nano/node/CMakeLists.txt index 60c0e516b..0d8880178 100644 --- a/nano/node/CMakeLists.txt +++ b/nano/node/CMakeLists.txt @@ -24,8 +24,6 @@ add_library( blockprocessor.cpp bootstrap_weights_beta.hpp bootstrap_weights_live.hpp - bootstrap/block_deserializer.hpp - bootstrap/block_deserializer.cpp bootstrap/bootstrap_config.hpp bootstrap/bootstrap_config.cpp bootstrap/bootstrap_server.hpp @@ -145,6 +143,8 @@ add_library( scheduler/priority.cpp telemetry.hpp telemetry.cpp + transport/block_deserializer.hpp + transport/block_deserializer.cpp transport/channel.hpp transport/channel.cpp transport/tcp_channel.hpp diff --git a/nano/node/bootstrap/block_deserializer.cpp b/nano/node/transport/block_deserializer.cpp similarity index 97% rename from nano/node/bootstrap/block_deserializer.cpp rename to nano/node/transport/block_deserializer.cpp index ef318b98f..61149eb39 100644 --- a/nano/node/bootstrap/block_deserializer.cpp +++ b/nano/node/transport/block_deserializer.cpp @@ -1,6 +1,6 @@ #include #include -#include +#include #include nano::bootstrap::block_deserializer::block_deserializer () : diff --git a/nano/node/bootstrap/block_deserializer.hpp b/nano/node/transport/block_deserializer.hpp similarity index 100% rename from nano/node/bootstrap/block_deserializer.hpp rename to nano/node/transport/block_deserializer.hpp