Merge pull request #10149

014f3cd cryptonote_basic: remove redundant call to get_transaction_hash() in overload (jeffro256)
This commit is contained in:
luigi1111 2025-10-07 15:24:35 -04:00
commit 020d980647
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010

View File

@ -1273,7 +1273,6 @@ namespace cryptonote
crypto::hash get_transaction_hash(const transaction& t)
{
crypto::hash h = null_hash;
get_transaction_hash(t, h, NULL);
CHECK_AND_ASSERT_THROW_MES(get_transaction_hash(t, h, NULL), "Failed to calculate transaction hash");
return h;
}