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