pub mod cache;
pub use cache::*;
pub mod channels;
pub use channels::*;
pub mod dag;
pub use dag::*;
pub mod partition;
pub use partition::*;
pub mod pending;
pub use pending::*;
pub mod proposal;
pub use proposal::*;
pub mod proposal_cache;
pub use proposal_cache::*;
pub mod ready;
pub use ready::*;
pub mod signed_proposals;
pub use signed_proposals::*;
pub mod storage;
pub use storage::*;
#[cfg(feature = "telemetry")]
pub mod telemetry;
#[cfg(feature = "telemetry")]
pub use telemetry::*;
pub mod timestamp;
pub use timestamp::*;
pub fn fmt_id(id: impl ToString) -> String {
let id = id.to_string();
let mut formatted_id = id.chars().take(16).collect::<String>();
if id.chars().count() > 16 {
formatted_id.push_str("..");
}
formatted_id
}