forked from lthn/blockchain
fixed a bug in transform_t_pod_array_to_hex_str_array()
This commit is contained in:
parent
ebd5815845
commit
bb439b0107
1 changed files with 1 additions and 1 deletions
|
|
@ -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())
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue