mirror of
https://gitlab.com/pulsechaincom/lighthouse-pulse.git
synced 2025-01-08 03:51:22 +00:00
b4ca8cbde8
I am not sure it is designed correctly
18 lines
301 B
Rust
18 lines
301 B
Rust
use super::super::utils::types::Hash256;
|
|
|
|
mod attestation_parent_hashes;
|
|
mod shuffling;
|
|
|
|
pub use self::attestation_parent_hashes::attestation_parent_hashes;
|
|
pub use self::shuffling::shuffle;
|
|
|
|
#[derive(Debug)]
|
|
pub enum TransitionError {
|
|
IntWrapping,
|
|
OutOfBounds,
|
|
InvalidInput(String),
|
|
}
|
|
|
|
|
|
|