Skip to content

Commit

Permalink
Merge pull request ethereum#3763 from ethereum/electra-merkle-proof-t…
Browse files Browse the repository at this point in the history
…ests

Add Electra merkle proof test vectors
  • Loading branch information
hwwhww authored Jun 19, 2024
2 parents 6e2b370 + 94535a6 commit 29d3a24
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/generators/merkle_proof/main.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from eth2spec.test.helpers.constants import DENEB, EIP7594
from eth2spec.test.helpers.constants import DENEB, ELECTRA, EIP7594
from eth2spec.gen_helpers.gen_from_tests.gen import run_state_test_generators, combine_mods


Expand All @@ -9,10 +9,12 @@
_new_eip7594_mods = {key: 'eth2spec.test.eip7594.merkle_proof.test_' + key for key in [
'single_merkle_proof',
]}
electra_mods = deneb_mods
eip_7594_mods = combine_mods(_new_eip7594_mods, deneb_mods)

all_mods = {
DENEB: deneb_mods,
ELECTRA: electra_mods,
EIP7594: eip_7594_mods,
}

Expand Down

0 comments on commit 29d3a24

Please sign in to comment.