mirror of
https://gitlab.com/pulsechaincom/lighthouse-pulse.git
synced 2025-01-10 04:51:22 +00:00
19 lines
309 B
Rust
19 lines
309 B
Rust
use super::utils::types::Hash256;
|
|
use super::db;
|
|
|
|
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),
|
|
}
|
|
|
|
|
|
|