pub type CheckAccountSignatureResult = Result<bool, CheckAccountSignatureError>;
Expand description

A wrapper around Result that fixes the error variant to CheckAccountSignatureError and result to bool.

Aliased Type§

enum CheckAccountSignatureResult {
    Ok(bool),
    Err(CheckAccountSignatureError),
}

Variants§

§1.0.0

Ok(bool)

Contains the success value

§1.0.0

Err(CheckAccountSignatureError)

Contains the error value