lighthouse/eth2/validator_induction/src/lib.rs

9 lines
164 B
Rust
Raw Normal View History

2018-10-19 16:11:45 +00:00
extern crate bls;
extern crate hashing;
extern crate spec;
2019-01-10 20:57:34 +00:00
extern crate types;
2018-10-19 16:11:45 +00:00
mod inductor;
2019-01-10 20:57:34 +00:00
pub use crate::inductor::{process_deposit, ValidatorInductionError};