Trait pallet_asset_tx_payment::pallet::Config[][src]

pub trait Config: Config + Config {
    type Fungibles: Balanced<Self::AccountId>;
    type OnChargeAssetTransaction: OnChargeAssetTransaction<Self>;
}
Expand description

Configuration trait of this pallet.

Implement this type for a runtime in order to customize this pallet.

Associated Types

The fungibles instance used to pay for transactions in assets.

The actual transaction charging logic that charges the fees.

Implementors