Trait orml_traits::currency::OnTransfer
source · pub trait OnTransfer<AccountId, CurrencyId, Balance> {
// Required method
fn on_transfer(
currency_id: CurrencyId,
from: &AccountId,
to: &AccountId,
amount: Balance
) -> DispatchResult;
}
Expand description
Hook to run before transferring from an account to another.