Skip to content

Commit

Permalink
run cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
technovision99 committed Sep 16, 2023
1 parent c1779da commit d986811
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/printers/callgraph.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ impl CallgraphPrinter {
let calling_fn_name = match f.ty() {
// In the case of loop functions we use the parent function's name
Type::Loop => name.rsplit_once('[').unwrap().0,
_ => name
_ => name,
};
let mut tracked_fns: HashSet<String> = HashSet::new();
self.add_contract_subgraphs(calling_fn_name, tracked_contracts, &mut tracked_fns);
Expand Down

0 comments on commit d986811

Please sign in to comment.