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 #9035.
  • Loading branch information
jeffro256 committed Mar 12, 2024
1 parent ef3e18b commit 31a7f12
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 31a7f12

Please sign in to comment.