pallet_rewards

Trait 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)

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so 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§