1
0
Fork 0
forked from lthn/blockchain

fixed a bug in transform_t_pod_array_to_hex_str_array()

This commit is contained in:
sowle 2024-07-10 13:52:36 +02:00
parent ebd5815845
commit bb439b0107
No known key found for this signature in database
GPG key ID: C07A24B2D89D49FC

View file

@ -105,7 +105,7 @@ namespace epee
std::string res;
for (const auto& item : a)
{
res += epee::string_tools::pod_to_hex(a) + ", ";
res += epee::string_tools::pod_to_hex(item) + ", ";
}
if (a.size())
{