Merge pull request #3398 from ethereum/delete-eip6110-lc-testgen
Delete `eip6110_mods` from light client testgen
This commit is contained in:
commit
9195bf5cbe
|
@ -1,4 +1,4 @@
|
||||||
from eth2spec.test.helpers.constants import ALTAIR, BELLATRIX, CAPELLA, DENEB, EIP6110
|
from eth2spec.test.helpers.constants import ALTAIR, BELLATRIX, CAPELLA, DENEB
|
||||||
from eth2spec.gen_helpers.gen_from_tests.gen import combine_mods, run_state_test_generators
|
from eth2spec.gen_helpers.gen_from_tests.gen import combine_mods, run_state_test_generators
|
||||||
|
|
||||||
|
|
||||||
|
@ -15,14 +15,12 @@ if __name__ == "__main__":
|
||||||
]}
|
]}
|
||||||
capella_mods = combine_mods(_new_capella_mods, bellatrix_mods)
|
capella_mods = combine_mods(_new_capella_mods, bellatrix_mods)
|
||||||
deneb_mods = capella_mods
|
deneb_mods = capella_mods
|
||||||
eip6110_mods = deneb_mods
|
|
||||||
|
|
||||||
all_mods = {
|
all_mods = {
|
||||||
ALTAIR: altair_mods,
|
ALTAIR: altair_mods,
|
||||||
BELLATRIX: bellatrix_mods,
|
BELLATRIX: bellatrix_mods,
|
||||||
CAPELLA: capella_mods,
|
CAPELLA: capella_mods,
|
||||||
DENEB: deneb_mods,
|
DENEB: deneb_mods,
|
||||||
EIP6110: eip6110_mods,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
run_state_test_generators(runner_name="light_client", all_mods=all_mods)
|
run_state_test_generators(runner_name="light_client", all_mods=all_mods)
|
||||||
|
|
Loading…
Reference in New Issue