mirror of
https://gitlab.com/pulsechaincom/lighthouse-pulse.git
synced 2025-01-09 12:31:23 +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
|
|
}
|
|
|
|
|