Skip to content

Commit

Permalink
increase execution limits
Browse files Browse the repository at this point in the history
  • Loading branch information
greged93 committed Jan 8, 2024
1 parent bb372a4 commit c635df4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/ef-testing/src/evm_sequencer/sequencer/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ impl KakarotSequencer {
eth_l1_gas_price: 1,
strk_l1_gas_price: 1,
},
invoke_tx_max_n_steps: 20_000_000,
validate_max_n_steps: 20_000_000,
max_recursion_depth: 2048,
invoke_tx_max_n_steps: 50_000_000,
validate_max_n_steps: 50_000_000,
max_recursion_depth: 8192,
};
let sequencer = Sequencer::new(block_context, initial_state, coinbase_address);
Self(sequencer)
Expand Down

0 comments on commit c635df4

Please sign in to comment.