Skip to content

Commit

Permalink
fix typo (scroll-tech#978)
Browse files Browse the repository at this point in the history
  • Loading branch information
icemelon authored Sep 23, 2023
1 parent 7ddaf92 commit 2b39b4e
Showing 1 changed file with 3 additions and 3 deletions.
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

0 comments on commit 2b39b4e

Please sign in to comment.