mirror of
https://gitlab.com/pulsechaincom/lighthouse-pulse.git
synced 2025-01-09 12:31:23 +00:00
18 lines
284 B
Rust
18 lines
284 B
Rust
use super::bls;
|
|
use super::ssz;
|
|
use super::utils;
|
|
|
|
|
|
mod attestation_record;
|
|
mod ssz_splitter;
|
|
|
|
pub use self::attestation_record::{
|
|
AttestationRecord,
|
|
MIN_SSZ_ATTESTION_RECORD_LENGTH,
|
|
};
|
|
pub use self::ssz_splitter::{
|
|
split_all,
|
|
split_one,
|
|
AttestationSplitError,
|
|
};
|