pub trait PayoutPerBlock<Imbalance> {
    // Required methods
    fn treasury(reward: Imbalance);
    fn collators(reward: Imbalance);
}
Expand description

Defines functions used to payout the beneficiaries of block rewards

Required Methods§

source

fn treasury(reward: Imbalance)

Payout reward to the treasury.

source

fn collators(reward: Imbalance)

Payout reward to the collator responsible for producing the block.

Object Safety§

This trait is not object safe.

Implementors§