mithril_aggregator/entities/leader_aggregator_epoch_settings.rs
1use mithril_common::entities::{Epoch, Signer};
2
3/// LeaderAggregatorEpochSettings represents the settings of an epoch
4#[derive(Clone, Debug, PartialEq)]
5pub struct LeaderAggregatorEpochSettings {
6 /// Current Epoch
7 pub epoch: Epoch,
8
9 /// Current Signers
10 pub current_signers: Vec<Signer>,
11
12 /// Signers that will be able to sign on the next epoch
13 pub next_signers: Vec<Signer>,
14}