Skip to content

Commit

Permalink
feat: remove sp1-zkvm precompile nightly (#810)
Browse files Browse the repository at this point in the history
  • Loading branch information
ratankaliani authored May 29, 2024
1 parent b8e378b commit 9935ce9
Show file tree
Hide file tree
Showing 13 changed files with 96 additions and 99 deletions.
1 change: 1 addition & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ on:
- "recursion/**"
- "derive/**"
- "sdk/**"
- "zkvm/**"
- ".github/workflows/**"
merge_group:

Expand Down
46 changes: 22 additions & 24 deletions tests/bls12381-mul/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified tests/bls12381-mul/elf/riscv32im-succinct-zkvm-elf
Binary file not shown.
2 changes: 1 addition & 1 deletion tests/bls12381-mul/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ pub fn main() {
252, 228, 138, 29, 116, 237, 48, 158, 160, 241, 160, 170, 227, 129, 244, 179, 8,
];

let mut a_point = AffinePoint::<Bls12381, 24>::from_le_bytes(a);
let mut a_point = AffinePoint::<Bls12381, 24>::from_le_bytes(&a);

// scalar.
// 3
Expand Down
46 changes: 22 additions & 24 deletions tests/bn254-mul/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified tests/bn254-mul/elf/riscv32im-succinct-zkvm-elf
Binary file not shown.
2 changes: 1 addition & 1 deletion tests/bn254-mul/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ pub fn main() {
0, 0, 0, 0,
];

let mut a_point = AffinePoint::<Bn254, 16>::from_le_bytes(a);
let mut a_point = AffinePoint::<Bn254, 16>::from_le_bytes(&a);

// scalar.
// 3
Expand Down
Loading

0 comments on commit 9935ce9

Please sign in to comment.