Skip to content

Commit

Permalink
ringct: fix trunc_amount field name change
Browse files Browse the repository at this point in the history
Caused in commit 0523140, PR monero-project#9035.
  • Loading branch information
jeffro256 committed Mar 12, 2024
1 parent 1bec712 commit c4e1c5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ringct/rctTypes.h
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ namespace rct {
memset(ecdhInfo[i].amount.bytes, 0, sizeof(ecdhInfo[i].amount.bytes));
else // saving
memcpy(trunc_amount.data, ecdhInfo[i].amount.bytes, sizeof(trunc_amount));
FIELD(trunc_amount);
FIELD_N("amount", trunc_amount);
if (!typename Archive<W>::is_saving()) // loading
memcpy(ecdhInfo[i].amount.bytes, trunc_amount.data, sizeof(trunc_amount));
ar.end_object();
Expand Down

0 comments on commit c4e1c5a

Please sign in to comment.