pub trait OnDust<AccountId, CurrencyId, Balance> {
    fn on_dust(who: &AccountId, currency_id: CurrencyId, amount: Balance);
}
Expand description

Handler for account which has dust, need to burn or recycle it

Required Methods§

Implementations on Foreign Types§

Implementors§

impl<T, GetAccountId> OnDust<<T as Config>::AccountId, <T as Config>::CurrencyId, <T as Config>::Balance> for TransferDust<T, GetAccountId>where
    T: Config,
    GetAccountId: Get<T::AccountId>,

impl<T: Config> OnDust<<T as Config>::AccountId, <T as Config>::CurrencyId, <T as Config>::Balance> for BurnDust<T>

impl<T: Config> OnDust<<T as Config>::AccountId, <T as Config>::CurrencyId, <T as Config>::Balance> for Pallet<T>