pub trait InspectHold<AccountId>: Inspect<AccountId> {
    fn balance_on_hold(who: &AccountId) -> Self::Balance;
    fn can_hold(who: &AccountId, amount: Self::Balance) -> bool;
}
Expand description

Trait for inspecting a fungible asset which can be reserved.

Required Methods§

Amount of funds held in reserve by who.

Check to see if some amount of funds of who may be placed on hold.

Implementors§