Skip to content

Commit

Permalink
Fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
JulianGCalderon committed Dec 17, 2024
1 parent cf4343e commit a97f8e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rpc-state-reader/src/reader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ impl RpcStateReader {
}

pub fn get_class_info(&self, class_hash: &ClassHash) -> anyhow::Result<ClassInfo> {
match self.get_contract_class(&class_hash)? {
match self.get_contract_class(class_hash)? {
SNContractClass::Sierra(sierra) => {
let abi_length = sierra.abi.len();
let sierra_length = sierra.sierra_program.len();
Expand Down

0 comments on commit a97f8e3

Please sign in to comment.