Skip to content
This repository was archived by the owner on Aug 5, 2025. It is now read-only.

Compress selectors #77

Merged
merged 1 commit into from
Feb 28, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crates/shielder-circuits/src/circuits/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ pub type CommitmentScheme = KZGCommitmentScheme<Bn256>;
pub type Prover<'a> = ProverSHPLONK<'a, Bn256>;
pub type Verifier<'a> = VerifierSHPLONK<'a, Bn256>;

pub const COMPRESS_SELECTORS: bool = false;
pub const COMPRESS_SELECTORS: bool = true;

// Generates setup parameters with given `k`. This restricts the circuit to at most `2^k` rows.
pub fn generate_setup_params<R: RngCore>(k: u32, rng: &mut R) -> Params {
Expand Down
Loading