mirror of
https://github.com/arnaucube/hyperplonk.git
synced 2026-01-11 16:41:28 +01:00
Update build
- Use default github rust version - Stop using clippy action, it has been unmaintained since 2020 - No longer enforce nightly fmt rules in CI (they can still be enforced in commit hooks or nix - No longer use cargo test unstable options - Run `cargo clippy --fix` to fix new errors
This commit is contained in:
@@ -453,7 +453,7 @@ where
|
||||
&mut transcript,
|
||||
)?;
|
||||
|
||||
let zero_check_point = zero_check_sub_claim.point.clone();
|
||||
let zero_check_point = zero_check_sub_claim.point;
|
||||
|
||||
// check zero check subclaim
|
||||
let f_eval = eval_f(&vk.params.gate_func, selector_evals, witness_gate_evals)?;
|
||||
@@ -485,8 +485,7 @@ where
|
||||
let perm_check_point = perm_check_sub_claim
|
||||
.product_check_sub_claim
|
||||
.zero_check_sub_claim
|
||||
.point
|
||||
.clone();
|
||||
.point;
|
||||
|
||||
let alpha = perm_check_sub_claim.product_check_sub_claim.alpha;
|
||||
let (beta, gamma) = perm_check_sub_claim.challenges;
|
||||
|
||||
Reference in New Issue
Block a user