snowbridge_amcl/
errors.rs

1use codec::{Decode, Encode, MaxEncodedLen};
2use scale_info::TypeInfo;
3
4#[derive(Copy, Clone, Debug, PartialEq, Encode, Decode, TypeInfo, MaxEncodedLen)]
5pub enum AmclError {
6    AggregateEmptyPoints,
7    HashToFieldError,
8    InvalidSecretKeySize,
9    InvalidSecretKeyRange,
10    InvalidPoint,
11    InvalidG1Size,
12    InvalidG2Size,
13    InvalidYFlag,
14}