lighthouse/lighthouse/state/attestation_record/validation/mod.rs
Paul Hauner 9dcec214af
Add block validation code
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.
2018-09-26 13:00:25 +10:00

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,
};