mithril_aggregator/tools/
mod.rs

1mod certificates_hash_migrator;
2mod digest_helpers;
3mod era;
4pub mod file_archiver;
5pub mod file_size;
6mod genesis;
7#[cfg(test)]
8pub mod mocks;
9mod signer_importer;
10mod single_signature_authenticator;
11pub mod url_sanitizer;
12mod vacuum_tracker;
13
14pub use certificates_hash_migrator::CertificatesHashMigrator;
15pub use digest_helpers::extract_digest_from_path;
16pub use era::EraTools;
17pub use genesis::{GenesisTools, GenesisToolsDependency};
18pub use signer_importer::{
19    CExplorerSignerRetriever, SignersImporter, SignersImporterPersister, SignersImporterRetriever,
20};
21pub use single_signature_authenticator::*;
22pub use vacuum_tracker::VacuumTracker;
23
24/// Downcast the error to the specified error type and check if the error satisfies the condition.
25pub(crate) fn downcast_check<E>(
26    error: &mithril_common::StdError,
27    check: impl Fn(&E) -> bool,
28) -> bool
29where
30    E: std::fmt::Display + std::fmt::Debug + Send + Sync + 'static,
31{
32    if let Some(inner_error) = error.downcast_ref::<E>() {
33        return check(inner_error);
34    }
35    false
36}