Trait frame_support::traits::EstimateNextNewSession
source · [−]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
fn estimate_next_new_session(now: BlockNumber) -> Option<BlockNumber>
fn estimate_next_new_session(now: BlockNumber) -> Option<BlockNumber>
Return the block number at which the next new session is estimated to happen.