Skip to content

Commit d0d8843

Browse files
minor linter fix
1 parent eec2197 commit d0d8843

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stacks-common/src/util/hash.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ where
429429
row_hashes.reserve(nodes[i].len() / 2);
430430

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

0 commit comments

Comments
 (0)