lighthouse-pulse/lighthouse/state/transition/mod.rs

16 lines
252 B
Rust
Raw Normal View History

use super::super::utils::types::Hash256;
2018-08-24 06:01:57 +00:00
mod attestation_parent_hashes;
pub use self::attestation_parent_hashes::attestation_parent_hashes;
#[derive(Debug)]
pub enum TransitionError {
IntWrapping,
OutOfBounds,
InvalidInput(String),
}