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;
|
||
|
*/
|