lighthouse-pulse/lighthouse/state/block/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

15 lines
236 B
Rust

extern crate blake2_rfc;
use super::attestation_record;
use super::common;
use super::db;
use super::ssz;
use super::utils;
mod structs;
mod ssz_block;
mod validation;
pub use self::structs::Block;
pub use self::ssz_block::SszBlock;