You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//! Aggregator specific certificate chain validation errors
2
+
3
+
use thiserror::Error;
4
+
5
+
use mithril_common::entities::Epoch;
6
+
7
+
/// Error raised when the local certificate chain has an epoch gap.
8
+
#[derive(Debug,Clone,Copy,PartialEq,Eq,Error)]
9
+
#[error(
10
+
"There is an epoch gap between the last certificate epoch ({certificate_epoch:?}) and current epoch ({current_epoch:?}). A leader aggregator must be re-genesis by the owner of the genesis keys, a follower aggregator will automatically catchup with the leader's certificate chain."
0 commit comments