pub trait OnChainRewards<Balance> {
// Required method
fn on_chain_rewards(chain_id: ChainId, reward: Balance);
}
Expand description
Hook to handle chain rewards.
Required Methods§
fn on_chain_rewards(chain_id: ChainId, 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.