pub trait AccountAuthorizer {
    type AuthorizationError;

    fn is_account_authorized(
        account_id: &AccountId
    ) -> Result<(), Self::AuthorizationError>; }
Expand description

Check which accounts are eligible to submit approvals to an ApprovalManager

Required Associated Types§

Why can this account not be authorized?

Required Methods§

Determines whether an account ID is allowed to submit an approval

Implementors§