type SignResult<M> = Result<(Signature<BluePallas<M>>, VerifyingKey<BluePallas<M>>), Error<BluePallas<M>>>;Aliased Type§
enum SignResult<M> {
Ok((Signature<BluePallas<M>>, VerifyingKey<BluePallas<M>>)),
Err(Error<BluePallas<M>>),
}Variants§
Ok((Signature<BluePallas<M>>, VerifyingKey<BluePallas<M>>))
Contains the success value
Err(Error<BluePallas<M>>)
Contains the error value