mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-11 04:31:51 +00:00
23 lines
705 B
Rust
23 lines
705 B
Rust
#![deny(clippy::integer_arithmetic)]
|
|
|
|
#[macro_use]
|
|
mod macros;
|
|
|
|
pub mod common;
|
|
pub mod genesis;
|
|
pub mod per_block_processing;
|
|
pub mod per_epoch_processing;
|
|
pub mod per_slot_processing;
|
|
pub mod test_utils;
|
|
|
|
pub use genesis::{
|
|
eth2_genesis_time, initialize_beacon_state_from_eth1, is_valid_genesis_state,
|
|
process_activations,
|
|
};
|
|
pub use per_block_processing::{
|
|
block_signature_verifier, errors::BlockProcessingError, per_block_processing, signature_sets,
|
|
BlockSignatureStrategy, BlockSignatureVerifier, VerifySignatures,
|
|
};
|
|
pub use per_epoch_processing::{errors::EpochProcessingError, per_epoch_processing};
|
|
pub use per_slot_processing::{per_slot_processing, Error as SlotProcessingError};
|