-
Notifications
You must be signed in to change notification settings - Fork 249
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add tests for EIP-7495: SSZ StableContainer
Implement test runner for new consensus-spec tests: - ethereum/consensus-specs#3777
- Loading branch information
1 parent
c7bf6fb
commit 22efdd8
Showing
4 changed files
with
228 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule nim-ssz-serialization
updated
19 files
+8 −1 | .github/workflows/ci.yml | |
+1 −0 | .gitignore | |
+3 −0 | .gitmodules | |
+1 −0 | nim.cfg | |
+141 −21 | ssz_serialization.nim | |
+11 −2 | ssz_serialization.nimble | |
+244 −4 | ssz_serialization/codec.nim | |
+156 −0 | ssz_serialization/digest.nim | |
+301 −169 | ssz_serialization/merkleization.nim | |
+14 −10 | ssz_serialization/proofs.nim | |
+199 −11 | ssz_serialization/types.nim | |
+25 −0 | tests/fuzzing/fuzz_hashtree.nim | |
+7 −0 | tests/fuzzing/nim.cfg | |
+2 −1 | tests/test_all.nim | |
+2 −7 | tests/test_merkleization.nim | |
+4 −6 | tests/test_merkleization_types.nim | |
+1 −3 | tests/test_proofs.nim | |
+513 −0 | tests/test_ssz_stable_container.nim | |
+1 −0 | vendor/hashtree |