mirror of
https://gitlab.com/pulsechaincom/lighthouse-pulse.git
synced 2025-01-09 12:31:23 +00:00
11 lines
373 B
Rust
11 lines
373 B
Rust
|
mod block_processable;
|
||
|
mod epoch_processable;
|
||
|
mod slot_processable;
|
||
|
|
||
|
pub use block_processable::{
|
||
|
validate_attestation, validate_attestation_without_signature, BlockProcessable,
|
||
|
Error as BlockProcessingError,
|
||
|
};
|
||
|
pub use epoch_processable::{EpochProcessable, Error as EpochProcessingError};
|
||
|
pub use slot_processable::{Error as SlotProcessingError, SlotProcessable};
|