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.
17 lines
352 B
Rust
17 lines
352 B
Rust
use super::common::maps::AttesterMap;
|
|
use super::db;
|
|
use super::bls;
|
|
use super::structs;
|
|
use super::ssz;
|
|
use super::common::attestation_parent_hashes;
|
|
use super::utils;
|
|
|
|
mod attestation_validation;
|
|
mod signature_verification;
|
|
mod message_generation;
|
|
|
|
pub use self::attestation_validation::{
|
|
validate_attestation,
|
|
AttestationValidationError,
|
|
};
|