Skip to content

Commit

Permalink
fix(executor): bump invoke_tx_max_n_steps to 3M
Browse files Browse the repository at this point in the history
That is the value that seems to be used by the sequencer.

Closes eqlabs#1474
  • Loading branch information
kkovaacs committed Nov 2, 2023
1 parent d12aaf5 commit c067929
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/executor/src/block_context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ pub(super) fn construct_block_context(
fee_token_address,
vm_resource_fee_cost: Arc::new(default_resource_fee_costs()),
gas_price: execution_state.header.gas_price.0,
invoke_tx_max_n_steps: 1_000_000,
invoke_tx_max_n_steps: 3_000_000,
validate_max_n_steps: 1_000_000,
max_recursion_depth: 50,
})
Expand Down

0 comments on commit c067929

Please sign in to comment.