Run cargo fmt --all

This commit is contained in:
Paul Hauner
2019-06-13 12:21:09 -04:00
parent 0128e9c0ce
commit cf3d8b0688
3 changed files with 5 additions and 7 deletions

View File

@@ -38,8 +38,7 @@ impl<E: EthSpec> Case for OperationsBlockHeader<E> {
// Processing requires the epoch cache.
state.build_all_caches(spec).unwrap();
let mut result =
process_block_header(&mut state, &self.block, spec, true).map(|_| state);
let mut result = process_block_header(&mut state, &self.block, spec, true).map(|_| state);
compare_beacon_state_results_without_caches(&mut result, &mut expected)
}