Skip to content

Commit

Permalink
minor linter fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jio-gl committed Aug 1, 2023
1 parent eec2197 commit d0d8843
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stacks-common/src/util/hash.rs
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ where
row_hashes.reserve(nodes[i].len() / 2);

for j in 0..(nodes[i].len() / 2) {
let h = MerkleTree::get_node_hash(&nodes[i][(2 * j)], &nodes[i][2 * j + 1]);
let h = MerkleTree::get_node_hash(&nodes[i][2 * j], &nodes[i][2 * j + 1]);
row_hashes.push(h);
}

Expand Down

0 comments on commit d0d8843

Please sign in to comment.