diff --git a/stacks-common/src/util/hash.rs b/stacks-common/src/util/hash.rs index 9660210dc9..3f7c165518 100644 --- a/stacks-common/src/util/hash.rs +++ b/stacks-common/src/util/hash.rs @@ -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); }