pub trait PotAccountProvider<AccountId> {
// Required method
fn pot_account(pot: RewardPot) -> AccountId;
}Expand description
Trait for generating reward pot account IDs.
Required Methods§
fn pot_account(pot: RewardPot) -> AccountId
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.
Implementors§
impl<AccountId> PotAccountProvider<AccountId> for SequentialTest
Available on crate feature
std only.