Add shuffling ef_tests

This commit is contained in:
Paul Hauner
2019-05-23 23:22:54 +10:00
parent ffcd1e6409
commit 5ed3c8bec3
6 changed files with 65 additions and 1 deletions

View File

@@ -21,7 +21,9 @@ impl EthSpec for MinimalEthSpec {
fn spec() -> ChainSpec {
// TODO: this spec is likely incorrect!
FewValidatorsEthSpec::spec()
let mut spec = FewValidatorsEthSpec::spec();
spec.shuffle_round_count = 10;
spec
}
}