Skip to content

Commit

Permalink
typo: rename function
Browse files Browse the repository at this point in the history
  • Loading branch information
ftupas committed Sep 13, 2023
1 parent d28943d commit 66d0ba3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/test-utils/src/deploy_helpers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -635,7 +635,7 @@ impl DeployedKakarot {
}

/// Returns the dumped Katana state with deployed Kakarot + EVM contracts.
pub fn dumped_kakarot_state() -> SerializableState {
pub fn dumped_katana_state() -> SerializableState {
// Get dump path
let path = root_project_path!(".katana/dump.json");

Expand All @@ -656,7 +656,7 @@ pub fn kakarot_starknet_config(with_dumped_state: bool) -> StarknetConfig {
validate_max_steps: kakarot_steps,
gas_price: 1,
},
init_state: if with_dumped_state { Some(dumped_kakarot_state()) } else { None },
init_state: if with_dumped_state { Some(dumped_katana_state()) } else { None },
..Default::default()
}
}
Expand Down

0 comments on commit 66d0ba3

Please sign in to comment.