chore: fix compiler warning

This commit is contained in:
Jude Nelson
2023-10-02 15:46:51 -04:00
parent ab329b6943
commit a10bf55d9c

View File

@@ -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);
}