referrerpolicy=no-referrer-when-downgrade
frame_support::traits::tokens::currency

Trait InspectLockableCurrency

Source
pub trait InspectLockableCurrency<AccountId>: LockableCurrency<AccountId> {
    // Required method
    fn balance_locked(id: LockIdentifier, who: &AccountId) -> Self::Balance;
}
Expand description

A inspect interface for a currency whose accounts can have liquidity restrictions.

Required Methods§

Source

fn balance_locked(id: LockIdentifier, who: &AccountId) -> Self::Balance

Amount of funds locked for who associated with id.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

impl<T: Config<I>, I: 'static> InspectLockableCurrency<<T as Config>::AccountId> for Pallet<T, I>