[][src]Trait frame_support::traits::IsDeadAccount

pub trait IsDeadAccount<AccountId> {
    fn is_dead_account(who: &AccountId) -> bool;
}
[]

Determiner to say whether a given account is unused.

Required methods

fn is_dead_account(who: &AccountId) -> bool[]

Is the given account dead?

Implementations on Foreign Types

impl<AccountId> IsDeadAccount<AccountId> for ()[src][]

Implementors

impl<T: Trait> IsDeadAccount<<T as Trait>::AccountId> for Module<T>