Skip to content

Commit

Permalink
Merge pull request #3398 from ethereum/delete-eip6110-lc-testgen
Browse files Browse the repository at this point in the history
Delete `eip6110_mods` from light client testgen
  • Loading branch information
hwwhww authored Jun 1, 2023
2 parents 8fc6eaf + dde9301 commit 9195bf5
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions tests/generators/light_client/main.py
Original file line number Diff line number Diff line change
@@ -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


Expand All @@ -15,14 +15,12 @@
]}
capella_mods = combine_mods(_new_capella_mods, bellatrix_mods)
deneb_mods = capella_mods
eip6110_mods = deneb_mods

all_mods = {
ALTAIR: altair_mods,
BELLATRIX: bellatrix_mods,
CAPELLA: capella_mods,
DENEB: deneb_mods,
EIP6110: eip6110_mods,
}

run_state_test_generators(runner_name="light_client", all_mods=all_mods)

0 comments on commit 9195bf5

Please sign in to comment.