Skip to content

Porting Batch Validator changes on top of the latest version of zsa1 … #566

Porting Batch Validator changes on top of the latest version of zsa1 …

Porting Batch Validator changes on top of the latest version of zsa1 … #566

Triggered via push October 16, 2023 07:30
Status Success
Total duration 1m 33s
Artifacts

lints-beta.yml

on: push
Fit to window
Zoom out
Zoom in

Annotations

27 errors and 5 warnings
mismatched types: src/circuit.rs#L430
error[E0308]: mismatched types --> src/circuit.rs:430:17 | 425 | let sinsemilla_config_2 = SinsemillaChip::configure( | ------------------------- arguments to this function are incorrect ... 430 | lookup, | ^^^^^^ expected a tuple with 4 elements, found one with 3 elements | = note: expected tuple `(halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn)` found tuple `(halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn)` note: associated function defined here --> /home/runner/.cargo/git/checkouts/halo2-3f0a27d7d67144fe/28af760/halo2_gadgets/src/sinsemilla/chip.rs:151:12 | 151 | pub fn configure( | ^^^^^^^^^
mismatched types: src/circuit.rs#L412
error[E0308]: mismatched types --> src/circuit.rs:412:17 | 407 | let sinsemilla_config_1 = SinsemillaChip::configure( | ------------------------- arguments to this function are incorrect ... 412 | lookup, | ^^^^^^ expected a tuple with 4 elements, found one with 3 elements | = note: expected tuple `(halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn)` found tuple `(halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn)` note: associated function defined here --> /home/runner/.cargo/git/checkouts/halo2-3f0a27d7d67144fe/28af760/halo2_gadgets/src/sinsemilla/chip.rs:151:12 | 151 | pub fn configure( | ^^^^^^^^^
this function takes 4 arguments but 3 arguments were supplied: src/circuit.rs#L384
error[E0061]: this function takes 4 arguments but 3 arguments were supplied --> src/circuit.rs:384:27 | 384 | let range_check = LookupRangeCheckConfig::configure(meta, advices[9], table_idx); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^----------------------------- an argument of type `halo2_proofs::plonk::TableColumn` is missing | note: associated function defined here --> /home/runner/.cargo/git/checkouts/halo2-3f0a27d7d67144fe/28af760/halo2_gadgets/src/utilities/lookup_range_check.rs:83:12 | 83 | pub fn configure( | ^^^^^^^^^ help: provide the argument | 384 | let range_check = LookupRangeCheckConfig::configure(meta, advices[9], table_idx, /* halo2_proofs::plonk::TableColumn */); | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
mismatched types: src/circuit/value_commit_orchard.rs#L197
error[E0308]: mismatched types --> src/circuit/value_commit_orchard.rs:197:21 | 192 | let sinsemilla_config = SinsemillaChip::configure( | ------------------------- arguments to this function are incorrect ... 197 | lookup, | ^^^^^^ expected a tuple with 4 elements, found one with 3 elements | = note: expected tuple `(halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn)` found tuple `(halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn)` note: associated function defined here --> /home/runner/.cargo/git/checkouts/halo2-3f0a27d7d67144fe/28af760/halo2_gadgets/src/sinsemilla/chip.rs:151:12 | 151 | pub fn configure( | ^^^^^^^^^
this function takes 4 arguments but 3 arguments were supplied: src/circuit/value_commit_orchard.rs#L190
error[E0061]: this function takes 4 arguments but 3 arguments were supplied --> src/circuit/value_commit_orchard.rs:190:35 | 190 | let range_check = LookupRangeCheckConfig::configure(meta, advices[9], table_idx); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^----------------------------- an argument of type `halo2_proofs::plonk::TableColumn` is missing | note: associated function defined here --> /home/runner/.cargo/git/checkouts/halo2-3f0a27d7d67144fe/28af760/halo2_gadgets/src/utilities/lookup_range_check.rs:83:12 | 83 | pub fn configure( | ^^^^^^^^^ help: provide the argument | 190 | let range_check = LookupRangeCheckConfig::configure(meta, advices[9], table_idx, /* halo2_proofs::plonk::TableColumn */); | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
mismatched types: src/circuit/note_commit.rs#L2398
error[E0308]: mismatched types --> src/circuit/note_commit.rs:2398:21 | 2389 | let sinsemilla_config = SinsemillaChip::< | _________________________________________- 2390 | | OrchardHashDomains, 2391 | | OrchardCommitDomains, 2392 | | OrchardFixedBases, 2393 | | >::configure( | |____________________________- arguments to this function are incorrect ... 2398 | lookup, | ^^^^^^ expected a tuple with 4 elements, found one with 3 elements | = note: expected tuple `(halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn)` found tuple `(halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn)` note: associated function defined here --> /home/runner/.cargo/git/checkouts/halo2-3f0a27d7d67144fe/28af760/halo2_gadgets/src/sinsemilla/chip.rs:151:12 | 151 | pub fn configure( | ^^^^^^^^^
this function takes 4 arguments but 3 arguments were supplied: src/circuit/note_commit.rs#L2388
error[E0061]: this function takes 4 arguments but 3 arguments were supplied --> src/circuit/note_commit.rs:2388:35 | 2388 | let range_check = LookupRangeCheckConfig::configure(meta, advices[9], table_idx); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^----------------------------- an argument of type `halo2_proofs::plonk::TableColumn` is missing | note: associated function defined here --> /home/runner/.cargo/git/checkouts/halo2-3f0a27d7d67144fe/28af760/halo2_gadgets/src/utilities/lookup_range_check.rs:83:12 | 83 | pub fn configure( | ^^^^^^^^^ help: provide the argument | 2388 | let range_check = LookupRangeCheckConfig::configure(meta, advices[9], table_idx, /* halo2_proofs::plonk::TableColumn */); | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
this function takes 4 arguments but 3 arguments were supplied: src/circuit/gadget/mux_chip.rs#L231
error[E0061]: this function takes 4 arguments but 3 arguments were supplied --> src/circuit/gadget/mux_chip.rs:231:35 | 231 | let range_check = LookupRangeCheckConfig::configure(meta, advices[9], table_idx); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^----------------------------- an argument of type `halo2_proofs::plonk::TableColumn` is missing | note: associated function defined here --> /home/runner/.cargo/git/checkouts/halo2-3f0a27d7d67144fe/28af760/halo2_gadgets/src/utilities/lookup_range_check.rs:83:12 | 83 | pub fn configure( | ^^^^^^^^^ help: provide the argument | 231 | let range_check = LookupRangeCheckConfig::configure(meta, advices[9], table_idx, /* halo2_proofs::plonk::TableColumn */); | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
mismatched types: src/circuit/commit_ivk.rs#L763
error[E0308]: mismatched types --> src/circuit/commit_ivk.rs:763:21 | 754 | let sinsemilla_config = SinsemillaChip::< | _________________________________________- 755 | | OrchardHashDomains, 756 | | OrchardCommitDomains, 757 | | OrchardFixedBases, 758 | | >::configure( | |____________________________- arguments to this function are incorrect ... 763 | lookup, | ^^^^^^ expected a tuple with 4 elements, found one with 3 elements | = note: expected tuple `(halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn)` found tuple `(halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn)` note: associated function defined here --> /home/runner/.cargo/git/checkouts/halo2-3f0a27d7d67144fe/28af760/halo2_gadgets/src/sinsemilla/chip.rs:151:12 | 151 | pub fn configure( | ^^^^^^^^^
this function takes 4 arguments but 3 arguments were supplied: src/circuit/commit_ivk.rs#L753
error[E0061]: this function takes 4 arguments but 3 arguments were supplied --> src/circuit/commit_ivk.rs:753:35 | 753 | let range_check = LookupRangeCheckConfig::configure(meta, advices[9], table_idx); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^----------------------------- an argument of type `halo2_proofs::plonk::TableColumn` is missing | note: associated function defined here --> /home/runner/.cargo/git/checkouts/halo2-3f0a27d7d67144fe/28af760/halo2_gadgets/src/utilities/lookup_range_check.rs:83:12 | 83 | pub fn configure( | ^^^^^^^^^ help: provide the argument | 753 | let range_check = LookupRangeCheckConfig::configure(meta, advices[9], table_idx, /* halo2_proofs::plonk::TableColumn */); | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
mismatched types: src/circuit.rs#L430
error[E0308]: mismatched types --> src/circuit.rs:430:17 | 425 | let sinsemilla_config_2 = SinsemillaChip::configure( | ------------------------- arguments to this function are incorrect ... 430 | lookup, | ^^^^^^ expected a tuple with 4 elements, found one with 3 elements | = note: expected tuple `(halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn)` found tuple `(halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn)` note: associated function defined here --> /home/runner/.cargo/git/checkouts/halo2-3f0a27d7d67144fe/28af760/halo2_gadgets/src/sinsemilla/chip.rs:151:12 | 151 | pub fn configure( | ^^^^^^^^^
mismatched types: src/circuit.rs#L412
error[E0308]: mismatched types --> src/circuit.rs:412:17 | 407 | let sinsemilla_config_1 = SinsemillaChip::configure( | ------------------------- arguments to this function are incorrect ... 412 | lookup, | ^^^^^^ expected a tuple with 4 elements, found one with 3 elements | = note: expected tuple `(halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn)` found tuple `(halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn)` note: associated function defined here --> /home/runner/.cargo/git/checkouts/halo2-3f0a27d7d67144fe/28af760/halo2_gadgets/src/sinsemilla/chip.rs:151:12 | 151 | pub fn configure( | ^^^^^^^^^
this function takes 4 arguments but 3 arguments were supplied: src/circuit.rs#L384
error[E0061]: this function takes 4 arguments but 3 arguments were supplied --> src/circuit.rs:384:27 | 384 | let range_check = LookupRangeCheckConfig::configure(meta, advices[9], table_idx); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^----------------------------- an argument of type `halo2_proofs::plonk::TableColumn` is missing | note: associated function defined here --> /home/runner/.cargo/git/checkouts/halo2-3f0a27d7d67144fe/28af760/halo2_gadgets/src/utilities/lookup_range_check.rs:83:12 | 83 | pub fn configure( | ^^^^^^^^^ help: provide the argument | 384 | let range_check = LookupRangeCheckConfig::configure(meta, advices[9], table_idx, /* halo2_proofs::plonk::TableColumn */); | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Clippy (beta)
Clippy had exited with the 101 exit code
mismatched types: src/circuit.rs#L430
error[E0308]: mismatched types --> src/circuit.rs:430:17 | 425 | let sinsemilla_config_2 = SinsemillaChip::configure( | ------------------------- arguments to this function are incorrect ... 430 | lookup, | ^^^^^^ expected a tuple with 4 elements, found one with 3 elements | = note: expected tuple `(halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn)` found tuple `(halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn)` note: associated function defined here --> /home/runner/.cargo/git/checkouts/halo2-3f0a27d7d67144fe/28af760/halo2_gadgets/src/sinsemilla/chip.rs:151:12 | 151 | pub fn configure( | ^^^^^^^^^
mismatched types: src/circuit.rs#L412
error[E0308]: mismatched types --> src/circuit.rs:412:17 | 407 | let sinsemilla_config_1 = SinsemillaChip::configure( | ------------------------- arguments to this function are incorrect ... 412 | lookup, | ^^^^^^ expected a tuple with 4 elements, found one with 3 elements | = note: expected tuple `(halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn)` found tuple `(halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn)` note: associated function defined here --> /home/runner/.cargo/git/checkouts/halo2-3f0a27d7d67144fe/28af760/halo2_gadgets/src/sinsemilla/chip.rs:151:12 | 151 | pub fn configure( | ^^^^^^^^^
this function takes 4 arguments but 3 arguments were supplied: src/circuit.rs#L384
error[E0061]: this function takes 4 arguments but 3 arguments were supplied --> src/circuit.rs:384:27 | 384 | let range_check = LookupRangeCheckConfig::configure(meta, advices[9], table_idx); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^----------------------------- an argument of type `halo2_proofs::plonk::TableColumn` is missing | note: associated function defined here --> /home/runner/.cargo/git/checkouts/halo2-3f0a27d7d67144fe/28af760/halo2_gadgets/src/utilities/lookup_range_check.rs:83:12 | 83 | pub fn configure( | ^^^^^^^^^ help: provide the argument | 384 | let range_check = LookupRangeCheckConfig::configure(meta, advices[9], table_idx, /* halo2_proofs::plonk::TableColumn */); | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
mismatched types: src/circuit/value_commit_orchard.rs#L197
error[E0308]: mismatched types --> src/circuit/value_commit_orchard.rs:197:21 | 192 | let sinsemilla_config = SinsemillaChip::configure( | ------------------------- arguments to this function are incorrect ... 197 | lookup, | ^^^^^^ expected a tuple with 4 elements, found one with 3 elements | = note: expected tuple `(halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn)` found tuple `(halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn)` note: associated function defined here --> /home/runner/.cargo/git/checkouts/halo2-3f0a27d7d67144fe/28af760/halo2_gadgets/src/sinsemilla/chip.rs:151:12 | 151 | pub fn configure( | ^^^^^^^^^
this function takes 4 arguments but 3 arguments were supplied: src/circuit/value_commit_orchard.rs#L190
error[E0061]: this function takes 4 arguments but 3 arguments were supplied --> src/circuit/value_commit_orchard.rs:190:35 | 190 | let range_check = LookupRangeCheckConfig::configure(meta, advices[9], table_idx); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^----------------------------- an argument of type `halo2_proofs::plonk::TableColumn` is missing | note: associated function defined here --> /home/runner/.cargo/git/checkouts/halo2-3f0a27d7d67144fe/28af760/halo2_gadgets/src/utilities/lookup_range_check.rs:83:12 | 83 | pub fn configure( | ^^^^^^^^^ help: provide the argument | 190 | let range_check = LookupRangeCheckConfig::configure(meta, advices[9], table_idx, /* halo2_proofs::plonk::TableColumn */); | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
mismatched types: src/circuit/note_commit.rs#L2398
error[E0308]: mismatched types --> src/circuit/note_commit.rs:2398:21 | 2389 | let sinsemilla_config = SinsemillaChip::< | _________________________________________- 2390 | | OrchardHashDomains, 2391 | | OrchardCommitDomains, 2392 | | OrchardFixedBases, 2393 | | >::configure( | |____________________________- arguments to this function are incorrect ... 2398 | lookup, | ^^^^^^ expected a tuple with 4 elements, found one with 3 elements | = note: expected tuple `(halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn)` found tuple `(halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn)` note: associated function defined here --> /home/runner/.cargo/git/checkouts/halo2-3f0a27d7d67144fe/28af760/halo2_gadgets/src/sinsemilla/chip.rs:151:12 | 151 | pub fn configure( | ^^^^^^^^^
this function takes 4 arguments but 3 arguments were supplied: src/circuit/note_commit.rs#L2388
error[E0061]: this function takes 4 arguments but 3 arguments were supplied --> src/circuit/note_commit.rs:2388:35 | 2388 | let range_check = LookupRangeCheckConfig::configure(meta, advices[9], table_idx); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^----------------------------- an argument of type `halo2_proofs::plonk::TableColumn` is missing | note: associated function defined here --> /home/runner/.cargo/git/checkouts/halo2-3f0a27d7d67144fe/28af760/halo2_gadgets/src/utilities/lookup_range_check.rs:83:12 | 83 | pub fn configure( | ^^^^^^^^^ help: provide the argument | 2388 | let range_check = LookupRangeCheckConfig::configure(meta, advices[9], table_idx, /* halo2_proofs::plonk::TableColumn */); | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
this function takes 4 arguments but 3 arguments were supplied: src/circuit/gadget/mux_chip.rs#L231
error[E0061]: this function takes 4 arguments but 3 arguments were supplied --> src/circuit/gadget/mux_chip.rs:231:35 | 231 | let range_check = LookupRangeCheckConfig::configure(meta, advices[9], table_idx); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^----------------------------- an argument of type `halo2_proofs::plonk::TableColumn` is missing | note: associated function defined here --> /home/runner/.cargo/git/checkouts/halo2-3f0a27d7d67144fe/28af760/halo2_gadgets/src/utilities/lookup_range_check.rs:83:12 | 83 | pub fn configure( | ^^^^^^^^^ help: provide the argument | 231 | let range_check = LookupRangeCheckConfig::configure(meta, advices[9], table_idx, /* halo2_proofs::plonk::TableColumn */); | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
mismatched types: src/circuit/commit_ivk.rs#L763
error[E0308]: mismatched types --> src/circuit/commit_ivk.rs:763:21 | 754 | let sinsemilla_config = SinsemillaChip::< | _________________________________________- 755 | | OrchardHashDomains, 756 | | OrchardCommitDomains, 757 | | OrchardFixedBases, 758 | | >::configure( | |____________________________- arguments to this function are incorrect ... 763 | lookup, | ^^^^^^ expected a tuple with 4 elements, found one with 3 elements | = note: expected tuple `(halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn)` found tuple `(halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn)` note: associated function defined here --> /home/runner/.cargo/git/checkouts/halo2-3f0a27d7d67144fe/28af760/halo2_gadgets/src/sinsemilla/chip.rs:151:12 | 151 | pub fn configure( | ^^^^^^^^^
mismatched types: src/circuit.rs#L430
error[E0308]: mismatched types --> src/circuit.rs:430:17 | 425 | let sinsemilla_config_2 = SinsemillaChip::configure( | ------------------------- arguments to this function are incorrect ... 430 | lookup, | ^^^^^^ expected a tuple with 4 elements, found one with 3 elements | = note: expected tuple `(halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn)` found tuple `(halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn)` note: associated function defined here --> /home/runner/.cargo/git/checkouts/halo2-3f0a27d7d67144fe/28af760/halo2_gadgets/src/sinsemilla/chip.rs:151:12 | 151 | pub fn configure( | ^^^^^^^^^
this function takes 4 arguments but 3 arguments were supplied: src/circuit/commit_ivk.rs#L753
error[E0061]: this function takes 4 arguments but 3 arguments were supplied --> src/circuit/commit_ivk.rs:753:35 | 753 | let range_check = LookupRangeCheckConfig::configure(meta, advices[9], table_idx); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^----------------------------- an argument of type `halo2_proofs::plonk::TableColumn` is missing | note: associated function defined here --> /home/runner/.cargo/git/checkouts/halo2-3f0a27d7d67144fe/28af760/halo2_gadgets/src/utilities/lookup_range_check.rs:83:12 | 83 | pub fn configure( | ^^^^^^^^^ help: provide the argument | 753 | let range_check = LookupRangeCheckConfig::configure(meta, advices[9], table_idx, /* halo2_proofs::plonk::TableColumn */); | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
mismatched types: src/circuit.rs#L412
error[E0308]: mismatched types --> src/circuit.rs:412:17 | 407 | let sinsemilla_config_1 = SinsemillaChip::configure( | ------------------------- arguments to this function are incorrect ... 412 | lookup, | ^^^^^^ expected a tuple with 4 elements, found one with 3 elements | = note: expected tuple `(halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn)` found tuple `(halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn, halo2_proofs::plonk::TableColumn)` note: associated function defined here --> /home/runner/.cargo/git/checkouts/halo2-3f0a27d7d67144fe/28af760/halo2_gadgets/src/sinsemilla/chip.rs:151:12 | 151 | pub fn configure( | ^^^^^^^^^
this function takes 4 arguments but 3 arguments were supplied: src/circuit.rs#L384
error[E0061]: this function takes 4 arguments but 3 arguments were supplied --> src/circuit.rs:384:27 | 384 | let range_check = LookupRangeCheckConfig::configure(meta, advices[9], table_idx); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^----------------------------- an argument of type `halo2_proofs::plonk::TableColumn` is missing | note: associated function defined here --> /home/runner/.cargo/git/checkouts/halo2-3f0a27d7d67144fe/28af760/halo2_gadgets/src/utilities/lookup_range_check.rs:83:12 | 83 | pub fn configure( | ^^^^^^^^^ help: provide the argument | 384 | let range_check = LookupRangeCheckConfig::configure(meta, advices[9], table_idx, /* halo2_proofs::plonk::TableColumn */); | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Clippy (beta)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1, actions-rs/clippy-check@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
Clippy (beta)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Clippy (beta)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Clippy (beta)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Clippy (beta)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/