Skip to content

Commit

Permalink
Propagate skip.. parameter to static method #328
Browse files Browse the repository at this point in the history
  • Loading branch information
vo-nil committed Sep 13, 2024
1 parent 9e2e92d commit c01e646
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,11 +97,12 @@ namespace nil {
typename private_preprocessor_type::preprocessed_data_type preprocessed_private_data,
const plonk_table_description<FieldType> &table_description,
const plonk_constraint_system<FieldType> &constraint_system,
commitment_scheme_type commitment_scheme
commitment_scheme_type commitment_scheme,
bool skip_commitment_scheme_eval_proofs = false
) {
auto prover = placeholder_prover<FieldType, ParamsType>(
preprocessed_public_data, std::move(preprocessed_private_data), table_description,
constraint_system, commitment_scheme);
constraint_system, commitment_scheme, skip_commitment_scheme_eval_proofs);
return prover.process();
}

Expand All @@ -111,7 +112,7 @@ namespace nil {
const plonk_table_description<FieldType> &table_description,
const plonk_constraint_system<FieldType> &constraint_system,
const commitment_scheme_type &commitment_scheme,
bool skip_commitment_scheme_eval_proofs=false
bool skip_commitment_scheme_eval_proofs = false
)
: preprocessed_public_data(preprocessed_public_data)
, table_description(table_description)
Expand Down

0 comments on commit c01e646

Please sign in to comment.