mithril_aggregator/services/certifier/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! ## Certifier Service
//!
//! This service is responsible for [OpenMessage] cycle of life. It creates open
//! messages and turn them into [Certificate]. To do so, it registers
//! single signatures and deal with the multi_signer for aggregate signature
//! creation.

mod buffered_certifier;
mod certifier_service;
mod interface;

pub use buffered_certifier::*;
pub use certifier_service::*;
pub use interface::*;