Trait pallet_rewards::OnReward

source ·
pub trait OnReward<AccountId, Balance> {
    // Required method
    fn on_reward(account: AccountId, reward: Balance);
}
Expand description

Hooks to notify when there are any rewards for specific account.

Required Methods§

source

fn on_reward(account: AccountId, reward: Balance)

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

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

source§

fn on_reward(_account: AccountId, _reward: Balance)

Implementors§