pub trait InspectLockableCurrency<AccountId>: LockableCurrency<AccountId> {
// Required method
fn balance_locked(id: [u8; 8], who: &AccountId) -> Self::Balance;
}
Expand description
A inspect interface for a currency whose accounts can have liquidity restrictions.
Required Methods§
fn balance_locked(id: [u8; 8], who: &AccountId) -> Self::Balance
fn balance_locked(id: [u8; 8], who: &AccountId) -> Self::Balance
Amount of funds locked for who
associated with id
.
Object Safety§
This trait is not object safe.