mirror of
https://gitlab.com/pulsechaincom/lighthouse-pulse.git
synced 2025-01-09 20:41:22 +00:00
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;
|
||
|
*/
|