mirror of
https://gitlab.com/pulsechaincom/lighthouse-pulse.git
synced 2025-01-10 13:01:22 +00:00
9dcec214af
This was created in another branch along with a whole bunch of other commits building out databases and other common elements. This full history of these works is available on master, however it should not be necessary.
20 lines
324 B
Rust
20 lines
324 B
Rust
mod validate_ssz_block;
|
|
#[cfg(test)]
|
|
mod tests;
|
|
|
|
use super::attestation_record;
|
|
use super::SszBlock;
|
|
use super::db;
|
|
use super::ssz;
|
|
use super::utils;
|
|
|
|
use super::common::maps::{
|
|
AttesterMap,
|
|
ProposerMap,
|
|
};
|
|
pub use self::validate_ssz_block::{
|
|
validate_ssz_block,
|
|
SszBlockValidationError,
|
|
BlockStatus,
|
|
};
|