From 283a8cbf0d67e00950d2a1800c9e8803b447643b Mon Sep 17 00:00:00 2001 From: Danny Ryan Date: Thu, 17 Oct 2019 10:49:49 +0900 Subject: [PATCH] remove refs to crosslinks --- test_generators/epoch_processing/main.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/test_generators/epoch_processing/main.py b/test_generators/epoch_processing/main.py index f0505ee94..52581d8c3 100644 --- a/test_generators/epoch_processing/main.py +++ b/test_generators/epoch_processing/main.py @@ -3,7 +3,6 @@ from typing import Iterable from eth2spec.phase0 import spec as spec_phase0 from eth2spec.phase1 import spec as spec_phase1 from eth2spec.test.phase_0.epoch_processing import ( - test_process_crosslinks, test_process_final_updates, test_process_justification_and_finalization, test_process_registry_updates, @@ -35,8 +34,6 @@ def create_provider(handler_name: str, tests_src, config_name: str) -> gen_typin if __name__ == "__main__": gen_runner.run_generator("epoch_processing", [ - create_provider('crosslinks', test_process_crosslinks, 'minimal'), - create_provider('crosslinks', test_process_crosslinks, 'mainnet'), create_provider('final_updates', test_process_final_updates, 'minimal'), create_provider('final_updates', test_process_final_updates, 'mainnet'), create_provider('justification_and_finalization', test_process_justification_and_finalization, 'minimal'),