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§
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.