pub enum AuthError {
    /// The caller is external, but the inputs to the transaction are not all owned by the same address.
    InputsNotAllOwnedBySameAddress: (),
    /// The caller is internal, but the `caller_address` function was called.
    CallerIsInternal: (),
}
Expand description

The error type used when an Identity cannot be determined.

Variants

InputsNotAllOwnedBySameAddress: ()

The caller is external, but the inputs to the transaction are not all owned by the same address.

CallerIsInternal: ()

The caller is internal, but the caller_address function was called.