lighthouse-pulse/lighthouse/state/transition/mod.rs
2018-08-24 16:01:57 +10:00

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),
}