Type Alias pallet_babe::pallet::Lateness

source ·
pub type Lateness<T: Config> = StorageValue<_GeneratedPrefixForStorageLateness<T>, BlockNumberFor<T>, ValueQuery>;
Expand description

How late the current block is compared to its parent.

This entry is populated as part of block execution and is cleaned up on block finalization. Querying this storage entry outside of block execution context should always yield zero.

Storage type is [StorageValue] with value type BlockNumberFor < T >.

Aliased Type§

struct Lateness<T: Config>(/* private fields */);