aboutsummaryrefslogtreecommitdiff
path: root/src/cryptonote_protocol
diff options
context:
space:
mode:
authortobtoht <tob@featherwallet.org>2026-04-22 18:06:02 +0000
committertobtoht <tob@featherwallet.org>2026-04-22 18:06:02 +0000
commit8ac6b99c9291203bb555c9d8489d43d87a332eb8 (patch)
tree3937a4611be67e0cf06601822b6da1bbbca64f8a /src/cryptonote_protocol
parent5f280180a8340ca61f29c320545e9b9021a4deda (diff)
parent874c771975257c82e275c17af72899b301a63d5f (diff)
downloadmonzero-core-8ac6b99c9291203bb555c9d8489d43d87a332eb8.tar.gz
monzero-core-8ac6b99c9291203bb555c9d8489d43d87a332eb8.tar.xz
monzero-core-8ac6b99c9291203bb555c9d8489d43d87a332eb8.zip
Merge pull request #10439
874c771 cryptonote_basic: pruned hash return bool (j-berman)
Diffstat (limited to 'src/cryptonote_protocol')
-rw-r--r--src/cryptonote_protocol/cryptonote_protocol_handler.inl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptonote_protocol/cryptonote_protocol_handler.inl b/src/cryptonote_protocol/cryptonote_protocol_handler.inl
index 6a3fd2532..5216b0d6e 100644
--- a/src/cryptonote_protocol/cryptonote_protocol_handler.inl
+++ b/src/cryptonote_protocol/cryptonote_protocol_handler.inl
@@ -116,7 +116,7 @@ namespace cryptonote
if (is_pruned)
{
if ((parse_success = cryptonote::parse_and_validate_tx_base_from_blob(tx_entry.blob, tx)))
- tx_hash = cryptonote::get_pruned_transaction_hash(tx, tx_entry.prunable_hash);
+ parse_success = cryptonote::get_pruned_transaction_hash(tx, tx_entry.prunable_hash, tx_hash);
}
else
{