pub trait DustRemovalAccountWhitelist<AccountId> {
    type Error;

    fn add_account(account: &AccountId) -> Result<(), Self::Error>;
    fn remove_account(account: &AccountId) -> Result<(), Self::Error>;
}
Expand description

Manage list of non-dustable accounts

Required Associated Types§

Required Methods§

Add account to the list.

Remove an account from the list.

Implementors§