Skip to content

Commit

Permalink
chore(blockifier): remove variable does not need to be mutable comment
Browse files Browse the repository at this point in the history
  • Loading branch information
ArniStarkware committed Dec 19, 2024
1 parent 0eeaf36 commit 0c5c174
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/blockifier/src/state/stateful_compression_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,10 @@ fn test_alias_updater(
#[case] expected_alias_keys: Vec<Felt>,
#[values(0, 2)] n_existing_aliases: u8,
) {
let mut state = initial_state(n_existing_aliases);
let state = initial_state(n_existing_aliases);

// Insert the keys into the alias contract updater and finalize the updates.
let mut alias_contract_updater = AliasUpdater::new(&mut state).unwrap();
let mut alias_contract_updater = AliasUpdater::new(&state).unwrap();
for key in keys {
alias_contract_updater.insert_alias(&StorageKey::try_from(key).unwrap()).unwrap();
}
Expand Down

0 comments on commit 0c5c174

Please sign in to comment.