mirror of
https://github.com/sigp/lighthouse.git
synced 2026-04-18 21:38:31 +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),
|
|
}
|
|
|
|
|
|
|