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