mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
hex_to_pod needs the destination as an arg, as opposed to it returning the pod
This commit is contained in:
parent
a544603a7b
commit
115f9523fa
1 changed files with 1 additions and 1 deletions
|
@ -635,7 +635,7 @@ namespace cryptonote
|
|||
|
||||
if (string_tools::pod_to_hex(block_blob_hash) == correct_blob_hash_202612)
|
||||
{
|
||||
res = string_tools::hex_to_pod(existing_block_id_202612);
|
||||
string_tools::hex_to_pod(existing_block_id_202612, res);
|
||||
return true;
|
||||
}
|
||||
return get_object_hash(get_block_hashing_blob(b), res);
|
||||
|
|
Loading…
Reference in a new issue