mirror of
https://gitlab.com/pulsechaincom/lighthouse-pulse.git
synced 2025-01-09 04:21:22 +00:00
13 lines
219 B
Rust
13 lines
219 B
Rust
|
// Collection of custom errors
|
||
|
|
||
|
#[derive(Debug,PartialEq)]
|
||
|
pub enum AttestationValidationError {
|
||
|
SlotTooHigh,
|
||
|
SlotTooLow(String),
|
||
|
IncorrectBitField,
|
||
|
NonZeroTrailingBits,
|
||
|
AggregateSignatureFail
|
||
|
}
|
||
|
|
||
|
|