Rename vec_shuffle to fisher_yates_shuffle

We're adding another shuffler so it's nice to be specific
This commit is contained in:
Paul Hauner
2019-02-14 14:57:29 +11:00
parent 1f8efffd6d
commit c41b743d2d
7 changed files with 4 additions and 4 deletions

View File

@@ -5,12 +5,12 @@ use crate::{
PendingAttestation, PublicKey, Signature, Slot, Validator,
};
use bls::verify_proof_of_possession;
use fisher_yates_shuffle::shuffle;
use honey_badger_split::SplitExt;
use rand::RngCore;
use serde_derive::Serialize;
use ssz::{hash, Decodable, DecodeError, Encodable, SszStream, TreeHash};
use std::ops::Range;
use vec_shuffle::shuffle;
pub enum Error {
InsufficientValidators,