Skip to content

Commit

Permalink
Small nit
Browse files Browse the repository at this point in the history
  • Loading branch information
omerfirmak committed Nov 30, 2023
1 parent 82a849d commit b2480b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vm/rust/src/juno_state_reader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,6 @@ pub fn contract_class_from_json_str(raw_json: &str) -> Result<ContractClass, Str
if let Ok(class) = v1_class {
Ok(class.into())
} else {
Err(format!("{}: {}", "not a valid contract class".to_string(), v1_class.err().unwrap()))
Err(format!("not a valid contract class: {}", v1_class.err().unwrap()))
}
}

0 comments on commit b2480b3

Please sign in to comment.