ghost-node/pallets/traits/src/evictor.rs
Uncle Stretch 0dd27d6429
eviction trait added
Signed-off-by: Uncle Stretch <uncle.stretch@ghostchain.io>
2026-06-18 14:36:51 +03:00

4 lines
93 B
Rust

pub trait StakingEvictor<AccountId> {
fn try_evict_validator(who: &AccountId) -> bool;
}