pub trait OnCollatorPayout<AccountId, Balance> {
    // Required method
    fn on_collator_payout(
        for_round: RoundIndex,
        collator_id: AccountId,
        amount: Balance
    ) -> Weight;
}

Required Methods§

source

fn on_collator_payout( for_round: RoundIndex, collator_id: AccountId, amount: Balance ) -> Weight

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<AccountId, Balance> OnCollatorPayout<AccountId, Balance> for ()

source§

fn on_collator_payout( _for_round: RoundIndex, _collator_id: AccountId, _amount: Balance ) -> Weight

Implementors§