Trait pallet_accounting::Config
source · [−]pub trait Config: Config {
type Event: From<Event<Self>> + IsType<<Self as Config>::Event>;
type AccountingConverter: TryConvert<<<Self as Config>::Currency as Currency<<Self as Config>::AccountId>>::Balance, LedgerBalance> + Convert<[u8; 32], Self::AccountId>;
type Currency: Currency<Self::AccountId>;
}
Expand description
Configuration trait of this pallet.
Implement this type for a runtime in order to customize this pallet.