[][src]Trait pallet_balances::Subtrait

pub trait Subtrait<I: Instance = DefaultInstance>: Trait {
    type Balance: Parameter + Member + AtLeast32Bit + Codec + Default + Copy + MaybeSerializeDeserialize + Debug;
    type ExistentialDeposit: Get<Self::Balance>;
    type AccountStore: StoredMap<Self::AccountId, AccountData<Self::Balance>>;
}

Associated Types

type Balance: Parameter + Member + AtLeast32Bit + Codec + Default + Copy + MaybeSerializeDeserialize + Debug

The balance of an account.

type ExistentialDeposit: Get<Self::Balance>

The minimum amount required to keep an account open.

type AccountStore: StoredMap<Self::AccountId, AccountData<Self::Balance>>

The means of storing the balances of an account.

Loading content...

Implementors

impl<T: Trait<I>, I: Instance> Subtrait<I> for T[src]

Loading content...