From 03e9a4a0b883d510bb2e1371c5d73b065e07e581 Mon Sep 17 00:00:00 2001 From: Fred Tupas Date: Wed, 13 Sep 2023 16:44:43 +0700 Subject: [PATCH] chore: rename variable --- crates/test-utils/src/deploy_helpers.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/test-utils/src/deploy_helpers.rs b/crates/test-utils/src/deploy_helpers.rs index 25bb44ec4..8b6364037 100644 --- a/crates/test-utils/src/deploy_helpers.rs +++ b/crates/test-utils/src/deploy_helpers.rs @@ -647,13 +647,13 @@ pub fn dumped_katana_state() -> SerializableState { /// Returns a `StarknetConfig` instance customized for Kakarot. /// If `with_dumped_state` is true, the config will be initialized with the dumped state. pub fn kakarot_starknet_config(with_dumped_state: bool) -> StarknetConfig { - let kakarot_steps = std::u32::MAX; + let max_steps = std::u32::MAX; StarknetConfig { disable_fee: true, env: Environment { chain_id: "SN_GOERLI".into(), - invoke_max_steps: kakarot_steps, - validate_max_steps: kakarot_steps, + invoke_max_steps: max_steps, + validate_max_steps: max_steps, gas_price: 1, }, init_state: if with_dumped_state { Some(dumped_katana_state()) } else { None },