lighthouse-pulse/src/utils/test_helpers.rs

11 lines
239 B
Rust
Raw Normal View History

2018-07-11 08:17:04 +00:00
extern crate rand;
use super::bls::Keypair;
use self::rand::thread_rng;
2018-07-11 08:17:04 +00:00
// Returns a keypair for use in testing purposes.
pub fn get_dangerous_test_keypair() -> Keypair {
let mut rng = thread_rng();
2018-07-11 08:17:04 +00:00
Keypair::generate(&mut rng)
}