Refactor BeaconStateBuilder

Made it a production-only struct. All the testing stuff can be done with
BeaconStateBencher
This commit is contained in:
Paul Hauner
2019-03-09 10:39:05 +11:00
parent 63743a962c
commit a77d1885a1
2 changed files with 42 additions and 16 deletions

View File

@@ -81,7 +81,7 @@ impl TestCase {
validator_count
);
let mut harness = BeaconChainHarness::new(spec, validator_count, validators_dir);
let mut harness = BeaconChainHarness::new(spec, validator_count, validators_dir, true);
info!("Starting simulation across {} slots...", slots);