Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

re-randomize srs #944

Open
wants to merge 9 commits into
base: develop
Choose a base branch
from

Merge branch 'develop' into re-randomize-srs

badf001
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Open

re-randomize srs #944

Merge branch 'develop' into re-randomize-srs
badf001
Select commit
Loading
Failed to load commit list.
This check has been archived and is scheduled for deletion. Learn more about checks retention
GitHub Actions / Clippy failed Sep 19, 2023 in 0s

Clippy

5 errors

Details

Results

Message level Amount
Internal compiler error 0
Error 5
Warning 0
Note 0
Help 0

Versions

  • rustc 1.68.0-nightly (dfe3fe710 2022-12-09)
  • cargo 1.68.0-nightly (f6e737b1e 2022-12-02)
  • clippy 0.1.67 (dfe3fe7 2022-12-09)

Annotations

Check failure on line 131 in prover/src/utils.rs

See this annotation in the file changed.

@github-actions github-actions / Clippy

field `s_g2` of struct `halo2_proofs::poly::kzg::commitment::ParamsKZG` is private

error[E0616]: field `s_g2` of struct `halo2_proofs::poly::kzg::commitment::ParamsKZG` is private
   --> prover/src/utils.rs:131:25
    |
131 |     param.s_g2 = (param.s_g2 * secret).into();
    |                         ^^^^ private field
    |
help: a method `s_g2` also exists, call it with parentheses
    |
131 |     param.s_g2 = (param.s_g2() * secret).into();
    |                             ++

Check failure on line 131 in prover/src/utils.rs

See this annotation in the file changed.

@github-actions github-actions / Clippy

field `s_g2` of struct `halo2_proofs::poly::kzg::commitment::ParamsKZG` is private

error[E0616]: field `s_g2` of struct `halo2_proofs::poly::kzg::commitment::ParamsKZG` is private
   --> prover/src/utils.rs:131:11
    |
131 |     param.s_g2 = (param.s_g2 * secret).into();
    |           ^^^^ private field

Check failure on line 130 in prover/src/utils.rs

See this annotation in the file changed.

@github-actions github-actions / Clippy

field `k` of struct `halo2_proofs::poly::kzg::commitment::ParamsKZG` is private

error[E0616]: field `k` of struct `halo2_proofs::poly::kzg::commitment::ParamsKZG` is private
   --> prover/src/utils.rs:130:56
    |
130 |     param.g_lagrange = g_to_lagrange(new_g_proj, param.k);
    |                                                        ^ private field

Check failure on line 122 in prover/src/utils.rs

See this annotation in the file changed.

@github-actions github-actions / Clippy

field `g` of struct `halo2_proofs::poly::kzg::commitment::ParamsKZG` is private

error[E0616]: field `g` of struct `halo2_proofs::poly::kzg::commitment::ParamsKZG` is private
   --> prover/src/utils.rs:122:11
    |
122 |     param.g = {
    |           ^ private field

Check failure on line 114 in prover/src/utils.rs

See this annotation in the file changed.

@github-actions github-actions / Clippy

field `g` of struct `halo2_proofs::poly::kzg::commitment::ParamsKZG` is private

error[E0616]: field `g` of struct `halo2_proofs::poly::kzg::commitment::ParamsKZG` is private
   --> prover/src/utils.rs:114:10
    |
114 |         .g
    |          ^ private field