mirror of
https://gitlab.com/pulsechaincom/lighthouse-pulse.git
synced 2025-01-09 12:31:23 +00:00
16 lines
252 B
Rust
16 lines
252 B
Rust
use super::super::utils::types::Hash256;
|
|
|
|
mod attestation_parent_hashes;
|
|
|
|
pub use self::attestation_parent_hashes::attestation_parent_hashes;
|
|
|
|
#[derive(Debug)]
|
|
pub enum TransitionError {
|
|
IntWrapping,
|
|
OutOfBounds,
|
|
InvalidInput(String),
|
|
}
|
|
|
|
|
|
|