Skip to content

Commit fe9c70a

Browse files
authored
Merge pull request #3818 from stacks-network/chore/parenthesis-warning
minor compiler fix
2 parents eec2197 + d0d8843 commit fe9c70a

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)