pub trait Mutate<AccountId>: Inspect<AccountId> {
    // Required methods
    fn set_freeze(
        id: &Self::Id,
        who: &AccountId,
        amount: Self::Balance
    ) -> DispatchResult;
    fn extend_freeze(
        id: &Self::Id,
        who: &AccountId,
        amount: Self::Balance
    ) -> DispatchResult;
    fn thaw(id: &Self::Id, who: &AccountId) -> DispatchResult;
}
Expand description

Trait for introducing, altering and removing locks to freeze an account’s funds so they never go below a set minimum.

Required Methods§

source

fn set_freeze( id: &Self::Id, who: &AccountId, amount: Self::Balance ) -> DispatchResult

Prevent actions which would reduce the balance of the account of who below the given amount and identify this restriction though the given id. Unlike extend_freeze, any outstanding freeze in place for who under the id are dropped.

If amount is zero, it is equivalent to using thaw.

Note that amount can be greater than the total balance, if desired.

source

fn extend_freeze( id: &Self::Id, who: &AccountId, amount: Self::Balance ) -> DispatchResult

Prevent the balance of the account of who from being reduced below the given amount and identify this restriction though the given id. Unlike set_freeze, this does not counteract any pre-existing freezes in place for who under the id. Also unlike set_freeze, in the case that amount is zero, this is no-op and never fails.

Note that more funds can be locked than the total balance, if desired.

source

fn thaw(id: &Self::Id, who: &AccountId) -> DispatchResult

Remove an existing lock.

Implementors§

source§

impl<F: MutateFreeze<AccountId>, A: Get<<F as Inspect<AccountId>>::AssetId>, AccountId> Mutate<AccountId> for ItemOf<F, A, AccountId>