[][src]Trait sc_consensus_slots::SlotCompatible

pub trait SlotCompatible {
    fn extract_timestamp_and_slot(
        &self,
        inherent: &InherentData
    ) -> Result<(u64, u64, Duration), Error>; fn time_offset() -> SignedDuration { ... } }

Slot compatible inherent data.

Required methods

fn extract_timestamp_and_slot(
    &self,
    inherent: &InherentData
) -> Result<(u64, u64, Duration), Error>

Extract timestamp and slot from inherent data.

Loading content...

Provided methods

fn time_offset() -> SignedDuration

Get the difference between chain time and local time. Defaults to always returning zero.

Loading content...

Implementors

Loading content...