diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2024-03-12 12:46:10 -0400 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2024-03-12 12:46:10 -0400 |
| commit | 81d4db08eb75ce5392c65ca6571e7b08e41b7c95 (patch) | |
| tree | 05588f4024f8e34d444fa7e5129a87ae371f85a4 /src/ringct | |
| parent | 453a82fd44c87134f1e21200ea6553b8f1a30e2b (diff) | |
| parent | 31a7f12d55303b6545d33f620a58d602f5416fa8 (diff) | |
| download | monzero-core-81d4db08eb75ce5392c65ca6571e7b08e41b7c95.tar.gz monzero-core-81d4db08eb75ce5392c65ca6571e7b08e41b7c95.tar.xz monzero-core-81d4db08eb75ce5392c65ca6571e7b08e41b7c95.zip | |
Merge pull request #9244v0.18.3.3
31a7f12 ringct: fix trunc_amount field name change (jeffro256)
Diffstat (limited to 'src/ringct')
| -rw-r--r-- | src/ringct/rctTypes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ringct/rctTypes.h b/src/ringct/rctTypes.h index dc3d9768b..b1d4a1e0e 100644 --- a/src/ringct/rctTypes.h +++ b/src/ringct/rctTypes.h @@ -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(); |
