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 used to request refund of a fee
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 refund for the account account
using the quotas of identity identity
Object Safety§
This trait is not object safe.