Skip to content

Commit

Permalink
fix lint issue (#1450)
Browse files Browse the repository at this point in the history
  • Loading branch information
amoylan2 authored Jul 18, 2024
1 parent 8960d0f commit c34883e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prover/src/zk_circuits_handler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ impl<'a> CircuitsHandlerProvider<'a> {
);
vk
})
.filter(|vk| vk.len() > 0)
.filter(|vk| !vk.is_empty())
.collect::<Vec<String>>()
})
.collect::<Vec<String>>()
Expand Down

0 comments on commit c34883e

Please sign in to comment.