Skip to content
This repository was archived by the owner on Apr 18, 2025. It is now read-only.
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
6 changes: 3 additions & 3 deletions integration-tests/src/integration_test_circuits.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ const MAX_EXP_STEPS: usize = 1000;
const MAX_KECCAK_ROWS: usize = 15000;
/// MAX_POSEIDON_ROWS
const MAX_POSEIDON_ROWS: usize = 15000;
/// MAX_VERTICLE_CIRCUIT_ROWS
const MAX_VERTICLE_CIRCUIT_ROWS: usize = 0;
/// MAX_VERTICAL_CIRCUIT_ROWS
const MAX_VERTICAL_CIRCUIT_ROWS: usize = 0;
/// Max number of EcAdd ops.
const MAX_EC_ADD: usize = 10;
/// Max number of EcMul ops.
Expand All @@ -88,7 +88,7 @@ const CIRCUITS_PARAMS: CircuitsParams = CircuitsParams {
max_exp_steps: MAX_EXP_STEPS,
max_keccak_rows: MAX_KECCAK_ROWS,
max_poseidon_rows: MAX_POSEIDON_ROWS,
max_vertical_circuit_rows: MAX_VERTICLE_CIRCUIT_ROWS,
max_vertical_circuit_rows: MAX_VERTICAL_CIRCUIT_ROWS,
max_rlp_rows: MAX_RLP_ROWS,
max_ec_ops: PrecompileEcParams {
ec_add: MAX_EC_ADD,
Expand Down