Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
TheMenko committed Jul 4, 2023
1 parent 4d2dbdb commit f55dfdc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ impl App {
dense_prefix_depth,
initial_leaf_value,
last_index_in_dense,
leftover_items,
&leftover_items,
gc_threshold,
mmap_file_path,
) else { return Ok(None) };
Expand Down
2 changes: 1 addition & 1 deletion src/identity_tree.rs
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,7 @@ impl CanonicalTreeBuilder {
dense_prefix_depth: usize,
initial_leaf: &Field,
last_index: usize,
leftover_items: Vec<ruint::Uint<256, 4>>,
leftover_items: &[ruint::Uint<256, 4>],
flattening_threshold: usize,
mmap_file_path: &str,
) -> Option<Self> {
Expand Down

0 comments on commit f55dfdc

Please sign in to comment.