Skip to content

Commit 8c07973

Browse files
committed
Move tx importer decorators to the new module
1 parent 141d68c commit 8c07973

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
mod importer_by_chunk;
2+
mod importer_with_pruner;
3+
mod importer_with_vacuum;
14
mod service;
25

6+
pub use importer_by_chunk::*;
7+
pub use importer_with_pruner::*;
8+
pub use importer_with_vacuum::*;
39
pub use service::*;

mithril-signer/src/services/mod.rs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@ mod aggregator_client;
1313
mod cardano_transactions_importer;
1414
mod cardano_transactions_preloader_checker;
1515
mod single_signer;
16-
mod transactions_importer_by_chunk;
17-
mod transactions_importer_with_pruner;
18-
mod transactions_importer_with_vacuum;
1916
mod upkeep_service;
2017

2118
#[cfg(test)]
@@ -24,7 +21,4 @@ pub use aggregator_client::*;
2421
pub use cardano_transactions_importer::*;
2522
pub use cardano_transactions_preloader_checker::*;
2623
pub use single_signer::*;
27-
pub use transactions_importer_by_chunk::*;
28-
pub use transactions_importer_with_pruner::*;
29-
pub use transactions_importer_with_vacuum::*;
3024
pub use upkeep_service::*;

0 commit comments

Comments
 (0)