ab_client_proof_of_time/source/
block_import.rs

1use ab_core_primitives::pot::{PotOutput, PotParametersChange, SlotNumber};
2
3/// PoT information of the best block
4#[derive(Debug, Copy, Clone)]
5pub struct BestBlockPotInfo {
6    /// Slot for which PoT output was generated
7    pub slot: SlotNumber,
8    /// PoT output itself
9    pub pot_output: PotOutput,
10    /// Change of parameters to apply to PoT chain
11    pub pot_parameters_change: Option<PotParametersChange>,
12}