Trait pallet_quota::traits::RefundFee
source · pub trait RefundFee<T: Config> {
// Required method
fn request_refund(
account: T::AccountId,
identity: IdtyId<T>,
amount: BalanceOf<T>
);
}
Expand description
Trait for managing refund operations.
Required Methods§
sourcefn request_refund(
account: T::AccountId,
identity: IdtyId<T>,
amount: BalanceOf<T>
)
fn request_refund( account: T::AccountId, identity: IdtyId<T>, amount: BalanceOf<T> )
Request a refund of a fee for a specific account and identity.
Object Safety§
This trait is not object safe.