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§
sourcefn set_next_issuable_on(idty_index: IdtyIndex, next_issuable_on: BlockNumber)
 
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.