Skip to content

No longer commitments to instance in transcript. #738

No longer commitments to instance in transcript.

No longer commitments to instance in transcript. #738

GitHub Actions / Clippy (1.56.1) failed Oct 18, 2024 in 0s

Clippy (1.56.1)

2 errors

Details

Results

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

Versions

  • rustc 1.78.0 (9b00956e5 2024-04-29)
  • cargo 1.78.0 (54d8815d0 2024-03-26)
  • clippy 0.1.78 (9b00956 2024-04-29)

Annotations

Check failure on line 48 in halo2_backend/src/poly/query.rs

See this annotation in the file changed.

@github-actions github-actions / Clippy (1.56.1)

field `blind` is never read

error: field `blind` is never read
  --> halo2_backend/src/poly/query.rs:48:16
   |
46 | pub struct PolynomialPointer<'com, C: CurveAffine> {
   |            ----------------- field in this struct
47 |     pub(crate) poly: &'com Polynomial<C::Scalar, Coeff>,
48 |     pub(crate) blind: Blind<C::Scalar>,
   |                ^^^^^
   |
   = note: `PolynomialPointer` has a derived impl for the trait `Clone`, but this is intentionally ignored during dead code analysis

Check failure on line 6 in halo2_backend/src/plonk/verifier/batch.rs

See this annotation in the file changed.

@github-actions github-actions / Clippy (1.56.1)

fields `instances` and `proof` are never read

error: fields `instances` and `proof` are never read
 --> halo2_backend/src/plonk/verifier/batch.rs:6:5
  |
5 | struct BatchItem<C: CurveAffine> {
  |        --------- fields in this struct
6 |     instances: Vec<Vec<Vec<C::ScalarExt>>>,
  |     ^^^^^^^^^
7 |     proof: Vec<u8>,
  |     ^^^^^
  |
  = note: `BatchItem` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis
  = note: `-D dead-code` implied by `-D warnings`
  = help: to override `-D warnings` add `#[allow(dead_code)]`