pub trait EnsureProxy<AccountId> {
    // Required method
    fn ensure_ok(
        delegator: AccountId,
        delegatee: AccountId
    ) -> Result<(), &'static str>;
}
Expand description

Ensure that a proxy between delegator and delegatee exists in order to deny or grant permission to do xcm-transact to transact_through_proxy.

Required Methods§

source

fn ensure_ok( delegator: AccountId, delegatee: AccountId ) -> Result<(), &'static str>

Object Safety§

This trait is not object safe.

Implementors§