Trait pallet_certification::traits::SetNextIssuableOn

source ·
pub trait SetNextIssuableOn<BlockNumber, IdtyIndex> {
    // Required method
    fn set_next_issuable_on(
        idty_index: IdtyIndex,
        next_issuable_on: BlockNumber,
    );
}
Expand description

Trait for setting the next issuable block number for an identity.

Required Methods§

source

fn set_next_issuable_on(idty_index: IdtyIndex, next_issuable_on: BlockNumber)

Set the next block number when the identity can issue a certification.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T: Config> SetNextIssuableOn<<<<T as Config>::Block as HeaderProvider>::HeaderT as Header>::Number, <T as Config>::IdtyIndex> for Pallet<T>