mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-10 05:03:26 +01:00
ringct: fix trunc_amount field name change
Caused in commit 05231400cebfeedbbc0a5386f38a033bba6314b3, PR #9035.
This commit is contained in:
parent
ef3e18b51b
commit
31a7f12d55
@ -374,7 +374,7 @@ namespace rct {
|
|||||||
memset(ecdhInfo[i].amount.bytes, 0, sizeof(ecdhInfo[i].amount.bytes));
|
memset(ecdhInfo[i].amount.bytes, 0, sizeof(ecdhInfo[i].amount.bytes));
|
||||||
else // saving
|
else // saving
|
||||||
memcpy(trunc_amount.data, ecdhInfo[i].amount.bytes, sizeof(trunc_amount));
|
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
|
if (!typename Archive<W>::is_saving()) // loading
|
||||||
memcpy(ecdhInfo[i].amount.bytes, trunc_amount.data, sizeof(trunc_amount));
|
memcpy(ecdhInfo[i].amount.bytes, trunc_amount.data, sizeof(trunc_amount));
|
||||||
ar.end_object();
|
ar.end_object();
|
||||||
|
Loading…
Reference in New Issue
Block a user