Skip to content

Commit

Permalink
Chore: Fixing include paths of IComponent
Browse files Browse the repository at this point in the history
  • Loading branch information
henriqueaklein committed Jun 6, 2024
1 parent 7b67f12 commit b6533d3
Show file tree
Hide file tree
Showing 23 changed files with 23 additions and 23 deletions.
2 changes: 1 addition & 1 deletion app/integration/AuthorApiFactory.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#define _AUTHOR_API_FACTORY_HPP_

#include "api/service/author/impl/author_api_impl.hpp"
#include "integration/CComponentFactory.hpp"
#include "singleton/CComponentFactory.hpp"
#include "transaction_pool/transaction_pool.hpp"
#include "crypto/hasher.hpp"
#include "network/extrinsic_gossiper.hpp"
Expand Down
2 changes: 1 addition & 1 deletion app/integration/AuthorityUpdateObserverFactory.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#define _AUTHORITY_UPDATE_OBSERVER_FACTORY_HPP_

#include "verification/authority/impl/authority_manager_impl.hpp"
#include "integration/CComponentFactory.hpp"
#include "singleton/CComponentFactory.hpp"
#include "application/app_state_manager.hpp"
#include "blockchain/block_tree.hpp"
#include "storage/buffer_map_types.hpp"
Expand Down
2 changes: 1 addition & 1 deletion app/integration/BlockBuilderManager.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

#include "authorship/impl/block_builder_factory_impl.hpp"
#include "authorship/impl/block_builder_impl.hpp"
#include "integration/CComponentFactory.hpp"
#include "singleton/CComponentFactory.hpp"
#include "blockchain/block_header_repository.hpp"

namespace sgns
Expand Down
2 changes: 1 addition & 1 deletion app/integration/BlockExecutorFactory.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#define _BLOCK_EXECUTOR_FACTORY_HPP_

#include "verification/production/impl/block_executor.hpp"
#include "integration/CComponentFactory.hpp"
#include "singleton/CComponentFactory.hpp"
#include "blockchain/block_tree.hpp"
#include "primitives/production_configuration.hpp"
#include "verification/production/production_synchronizer.hpp"
Expand Down
2 changes: 1 addition & 1 deletion app/integration/BlockHeaderRepositoryFactory.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#define _BLOCK_HEADER_REPOSITORY_FACTORY_HPP_

#include "blockchain/impl/key_value_block_header_repository.hpp"
#include "integration/CComponentFactory.hpp"
#include "singleton/CComponentFactory.hpp"

class BlockHeaderRepositoryFactory
{
Expand Down
2 changes: 1 addition & 1 deletion app/integration/BlockStorageFactory.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#define _BLOCK_STORAGE_FACTORY_HPP_

#include "blockchain/block_storage.hpp"
#include "integration/CComponentFactory.hpp"
#include "singleton/CComponentFactory.hpp"
#include "storage/trie/trie_storage.hpp"
#include "blockchain/impl/key_value_block_storage.hpp"
#include "application/key_storage.hpp"
Expand Down
2 changes: 1 addition & 1 deletion app/integration/BlockTreeFactory.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#define _BLOCK_TREE_FACTORY_HPP_

#include "blockchain/impl/block_tree_impl.hpp"
#include "integration/CComponentFactory.hpp"
#include "singleton/CComponentFactory.hpp"
#include "blockchain/block_header_repository.hpp"
#include "blockchain/block_storage.hpp"
#include "network/extrinsic_observer.hpp"
Expand Down
2 changes: 1 addition & 1 deletion app/integration/BlockValidatorFactory.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#define _BLOCK_VALIDATOR_FACTORY_HPP_

#include "verification/validation/production_block_validator.hpp"
#include "integration/CComponentFactory.hpp"
#include "singleton/CComponentFactory.hpp"
#include "blockchain/block_tree.hpp"
#include "crypto/hasher.hpp"
#include "crypto/sr25519_provider.hpp"
Expand Down
2 changes: 1 addition & 1 deletion app/integration/EnvironmentFactory.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#ifndef _ENVIRONMENT_FACTORY_HPP_
#define _ENVIRONMENT_FACTORY_HPP_
#include "verification/finality/impl/environment_impl.hpp"
#include "integration/CComponentFactory.hpp"
#include "singleton/CComponentFactory.hpp"
#include "blockchain/block_tree.hpp"
#include "blockchain/block_header_repository.hpp"
#include "verification/finality/gossiper.hpp"
Expand Down
2 changes: 1 addition & 1 deletion app/integration/EpochStorageFactory.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#ifndef _EPOCH_STORAGE_HPP_
#define _EPOCH_STORAGE_HPP_
#include "verification/production/impl/epoch_storage_impl.hpp"
#include "integration/CComponentFactory.hpp"
#include "singleton/CComponentFactory.hpp"
#include "storage/buffer_map_types.hpp"

class EpochStorageFactory
Expand Down
2 changes: 1 addition & 1 deletion app/integration/ExtrinsicObserverFactory.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#ifndef _EXTRINSIC_OBSERVER_FACTORY_HPP_
#define _EXTRINSIC_OBSERVER_FACTORY_HPP_
#include "network/impl/extrinsic_observer_impl.hpp"
#include "integration/CComponentFactory.hpp"
#include "singleton/CComponentFactory.hpp"
#include "api/service/author/author_api.hpp"

class ExtrinsicObserverFactory
Expand Down
2 changes: 1 addition & 1 deletion app/integration/FinalityFactory.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#define _FINALITY_FACTORY_HPP_

#include "verification/finality/impl/finality_impl.hpp"
#include "integration/CComponentFactory.hpp"
#include "singleton/CComponentFactory.hpp"
#include "application/app_state_manager.hpp"
#include "verification/finality/environment.hpp"
#include "storage/buffer_map_types.hpp"
Expand Down
2 changes: 1 addition & 1 deletion app/integration/OwnPeerInfoFactory.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#define _OWN_PEER_INFO_FACTORY_HPP_

#include "network/types/own_peer_info.hpp"
#include "integration/CComponentFactory.hpp"
#include "singleton/CComponentFactory.hpp"
#include "application/key_storage.hpp"
#include <libp2p/injector/host_injector.hpp>
#include "base/outcome_throw.hpp"
Expand Down
2 changes: 1 addition & 1 deletion app/integration/PoolModeratorFactory.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#define _POOL_MODERATOR_FACTORY_HPP_

#include "transaction_pool/impl/pool_moderator_impl.hpp"
#include "integration/CComponentFactory.hpp"
#include "singleton/CComponentFactory.hpp"
#include "clock/clock.hpp"

class PoolModeratorFactory
Expand Down
2 changes: 1 addition & 1 deletion app/integration/ProductionFactory.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#ifndef _PRODUCTION_FACTORY_HPP_
#define _PRODUCTION_FACTORY_HPP_

#include "integration/CComponentFactory.hpp"
#include "singleton/CComponentFactory.hpp"
#include "verification/production/impl/production_impl.hpp"
#include "application/app_state_manager.hpp"
#include "verification/production/production_lottery.hpp"
Expand Down
2 changes: 1 addition & 1 deletion app/integration/ProductionLotteryFactory.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

#include "verification/production/impl/production_lottery_impl.hpp"
#include "crypto/vrf_provider.hpp"
#include "integration/CComponentFactory.hpp"
#include "singleton/CComponentFactory.hpp"

class ProductionLotteryFactory
{
Expand Down
2 changes: 1 addition & 1 deletion app/integration/ProductionSynchronizerFactory.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#ifndef _PRODUCTION_SYNCHRONIZER_FACTORY_HPP_
#define _PRODUCTION_SYNCHRONIZER_FACTORY_HPP_
#include "verification/production/impl/production_synchronizer_impl.hpp"
#include "integration/CComponentFactory.hpp"
#include "singleton/CComponentFactory.hpp"
#include "application/configuration_storage.hpp"
#include "blockchain/block_tree.hpp"
#include "blockchain/block_header_repository.hpp"
Expand Down
2 changes: 1 addition & 1 deletion app/integration/ProposerFactory.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#define _PROPOSER_FACTORY_HPP_

#include "authorship/impl/proposer_impl.hpp"
#include "integration/CComponentFactory.hpp"
#include "singleton/CComponentFactory.hpp"
#include "transaction_pool/transaction_pool.hpp"

class ProposerFactory
Expand Down
2 changes: 1 addition & 1 deletion app/integration/TranscationPoolFactory.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#define _TRANSACTION_POOL_FACTORY_HPP_

#include "transaction_pool/impl/transaction_pool_impl.hpp"
#include "integration/CComponentFactory.hpp"
#include "singleton/CComponentFactory.hpp"
#include "transaction_pool/pool_moderator.hpp"
#include "blockchain/block_header_repository.hpp"

Expand Down
2 changes: 1 addition & 1 deletion app/integration/TrieSerializerFactory.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#define _TRIE_SERIALIZER_FACTORY_HPP_

#include "storage/trie/serialization/trie_serializer_impl.hpp"
#include "integration/CComponentFactory.hpp"
#include "singleton/CComponentFactory.hpp"

class TrieSerializerFactory
{
Expand Down
2 changes: 1 addition & 1 deletion app/integration/TrieStorageBackendFactory.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#define _TRIE_STORAGE_BACKEND_FACTORY_HPP_
#include "base/buffer.hpp"
#include "blockchain/impl/storage_util.hpp"
#include "integration/CComponentFactory.hpp"
#include "singleton/CComponentFactory.hpp"
#include "storage/trie/impl/trie_storage_backend_impl.hpp"

class TrieStorageBackendFactory
Expand Down
2 changes: 1 addition & 1 deletion app/integration/TrieStorageFactory.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#include "storage/trie/serialization/trie_serializer.hpp"
#include "storage/changes_trie/changes_tracker.hpp"
#include "application/configuration_storage.hpp"
#include "integration/CComponentFactory.hpp"
#include "singleton/CComponentFactory.hpp"
#include "base/outcome_throw.hpp"

class TrieStorageFactory
Expand Down
2 changes: 1 addition & 1 deletion example/account_handling/AccountHelper.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#include "crypto/hasher/hasher_impl.hpp"
#include "blockchain/impl/key_value_block_header_repository.hpp"
#include "blockchain/impl/key_value_block_storage.hpp"
#include "integration/IComponent.hpp"
#include "singleton/IComponent.hpp"
#include "processing/impl/processing_task_queue_impl.hpp"
#include "processing/impl/processing_core_impl.hpp"
#include "processing/processing_service.hpp"
Expand Down

0 comments on commit b6533d3

Please sign in to comment.