-
-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ethereum KZG / EIP-4844 / Proto-danksharding followup (#270)
* Pass all verify_kzg_proof test cases * pass blob_to_commitment tests * move tests * KZG: WIP on compute_proof * eip4844: Pass all compute_kzg_proof tests * pass compute_blob_kzg_proof tests * pass all verify_blob_kzg_proof tests * CI needs yaml * fix memory leaks and add effect tags * CI: lock yaml version too pre Nim 2.0
- Loading branch information
Showing
226 changed files
with
551 additions
and
484 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -211,21 +211,21 @@ jobs: | |
run: | | ||
pacman -S --needed --noconfirm mingw-w64-x86_64-gmp | ||
nimble refresh --verbose -y | ||
nimble install --verbose -y gmp jsony asynctools | ||
nimble install --verbose -y gmp jsony asynctools [email protected] | ||
- name: Install test dependencies | ||
if: runner.os != 'Windows' | ||
shell: bash | ||
run: | | ||
nimble refresh --verbose -y | ||
nimble install --verbose -y gmp jsony asynctools | ||
nimble install --verbose -y gmp jsony asynctools [email protected] | ||
- name: Print Nim & compiler versions | ||
shell: bash | ||
# gcc is an alias to Clang on MacOS | ||
run: | | ||
nim -v | ||
gcc -v | ||
gcc -v | ||
- name: Run Constantine tests (UNIX with Assembly) | ||
if: runner.os != 'Windows' && matrix.target.BACKEND == 'ASM' | ||
|
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
Oops, something went wrong.