Skip to content

Commit

Permalink
Increase step limit to 3M
Browse files Browse the repository at this point in the history
Fixes #1274
  • Loading branch information
omerfirmak committed Oct 10, 2023
1 parent f65a557 commit 934c64b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vm/rust/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -379,8 +379,8 @@ fn build_block_context(
(KECCAK_BUILTIN_NAME.to_string(), N_STEPS_FEE_WEIGHT * 2048.0),
])
.into(),
invoke_tx_max_n_steps: 1_000_000,
validate_max_n_steps: 1_000_000,
invoke_tx_max_n_steps: 3_000_000,
validate_max_n_steps: 3_000_000,
max_recursion_depth: 50,
}
}
Expand Down

0 comments on commit 934c64b

Please sign in to comment.