Update to EF tests v0.12.2 (#1392)

Update the EF test vectors to v0.12.2 so that they include the new finality tests. Also, correct a typo that caused the epoch processing final update tests not to run on the minimal spec.
This commit is contained in:
Michael Sproul
2020-07-26 23:19:49 +00:00
parent 0b5be9b2c0
commit 5f013548c0
3 changed files with 29 additions and 3 deletions

View File

@@ -207,6 +207,25 @@ impl<E: EthSpec + TypeName, T: EpochTransition<E>> Handler for EpochProcessingHa
}
}
pub struct FinalityHandler<E>(PhantomData<E>);
impl<E: EthSpec + TypeName> Handler for FinalityHandler<E> {
// Reuse the blocks case runner.
type Case = cases::SanityBlocks<E>;
fn config_name() -> &'static str {
E::name()
}
fn runner_name() -> &'static str {
"finality"
}
fn handler_name() -> String {
"finality".into()
}
}
pub struct GenesisValidityHandler<E>(PhantomData<E>);
impl<E: EthSpec + TypeName> Handler for GenesisValidityHandler<E> {