mirror of
https://gitlab.com/pulsechaincom/lighthouse-pulse.git
synced 2025-01-08 03:51:22 +00:00
12 lines
167 B
Rust
12 lines
167 B
Rust
use super::super::utils::types::Hash256;
|
|
|
|
pub mod helpers;
|
|
|
|
#[derive(Debug)]
|
|
pub enum TransitionError {
|
|
IntWrapping,
|
|
OutOfBounds,
|
|
InvalidInput(String),
|
|
}
|
|
|