diff --git a/protostar-rust/src/cheatcodes_hint_processor.rs b/protostar-rust/src/cheatcodes_hint_processor.rs index 6e382985c..5c695bb36 100644 --- a/protostar-rust/src/cheatcodes_hint_processor.rs +++ b/protostar-rust/src/cheatcodes_hint_processor.rs @@ -277,7 +277,7 @@ fn execute_cheatcode_hint( .expect("Failed to read contract class from json"); let contract_class = BlockifierContractClass::V1(contract_class); - // TODO(#2134) replace this. Hash should be calculated by the blockifier in the correct manner. This is just a workaround. + // TODO(#2134) replace this. Hash should be calculated in the correct manner. This is just a workaround. let mut hasher = DefaultHasher::new(); casm_serialized.hash(&mut hasher); let class_hash = hasher.finish();