117a207d49
This adds block and attestation validation code that was written previously. There were many non-validation specific changes made whilst building these functions (e.g., db, hashing, etc) -- these changes have already been merged into master and this branch has been created just to make it easy to review this code.
21 lines
318 B
Rust
21 lines
318 B
Rust
extern crate validation;
|
|
|
|
extern crate bls;
|
|
extern crate db;
|
|
extern crate hashing;
|
|
extern crate ssz;
|
|
extern crate ssz_helpers;
|
|
extern crate types;
|
|
|
|
#[cfg(test)]
|
|
mod attestation_validation;
|
|
#[cfg(test)]
|
|
mod block_validation;
|
|
|
|
/*
|
|
use lighthouse::bls;
|
|
use lighthouse::db;
|
|
use lighthouse::state;
|
|
use lighthouse::utils;
|
|
*/
|