pub trait EstimateNextNewSession<BlockNumber> {
    fn estimate_next_new_session(now: BlockNumber) -> Option<BlockNumber>;
fn weight(now: BlockNumber) -> Weight; }
Expand description

Something that can estimate at which block the next new_session will be triggered. This must always be implemented by the session module.

Required methods

Return the block number at which the next new session is estimated to happen.

Return the weight of calling estimate_next_new_session

Implementations on Foreign Types

Implementors