Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat: add capacity for RLP circuit #255

Merged
merged 1 commit into from
Sep 2, 2023
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
5 changes: 3 additions & 2 deletions prover/src/zkevm/circuit/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ pub type WitnessBlock = Block<Fr>;
pub const MAX_TXS: usize = 100;
pub const MAX_INNER_BLOCKS: usize = 100;
pub const MAX_EXP_STEPS: usize = 10_000;
pub const MAX_CALLDATA: usize = 600_000;
pub const MAX_CALLDATA: usize = 350_000;
pub const MAX_RLP_ROWS: usize = 800_000;
pub const MAX_BYTECODE: usize = 600_000;
pub const MAX_MPT_ROWS: usize = 1_000_000;
pub const MAX_KECCAK_ROWS: usize = 1_000_000;
Expand All @@ -51,7 +52,7 @@ pub fn get_super_circuit_params() -> CircuitsParams {
max_vertical_circuit_rows: MAX_VERTICLE_ROWS,
max_exp_steps: MAX_EXP_STEPS,
max_mpt_rows: MAX_MPT_ROWS,
max_rlp_rows: MAX_CALLDATA,
max_rlp_rows: MAX_RLP_ROWS,
max_ec_ops: PrecompileEcParams {
ec_add: MAX_PRECOMPILE_EC_ADD,
ec_mul: MAX_PRECOMPILE_EC_MUL,
Expand Down