Skip to content

Commit

Permalink
Remove a cast.
Browse files Browse the repository at this point in the history
  • Loading branch information
martun committed Dec 21, 2023
1 parent ae1dff2 commit cae18d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/nil/actor/container/merkle/tree.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ namespace nil {
auto itr = first;
for (auto i = begin; i < end; ++i) {
auto leaf = *itr;
(*p)[i] = (value_type)nil::crypto3::containers::detail::generate_poseidon_leaf_hash<hash_type>(leaf);
(*p)[i] = nil::crypto3::containers::detail::generate_poseidon_leaf_hash<hash_type>(leaf);
itr++;
}
return nil::actor::make_ready_future<>();
Expand Down

0 comments on commit cae18d9

Please sign in to comment.