diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-06-28 16:03:28 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-08-28 21:28:58 +0100 |
commit | 6d0e47148bc400ca6668860e162fe2f4ad8a3dac (patch) | |
tree | b9d5d32dc975b8811cf992c2f86a75d00bb5c815 /tests/unit_tests/serialization.cpp | |
parent | ringct: fix size unit mismatch calling keccak (diff) | |
download | monero-6d0e47148bc400ca6668860e162fe2f4ad8a3dac.tar.xz |
rct: add the tx prefix hash into the MLSAG
to protect the non-signatures parts of the tx from tampering.
Diffstat (limited to 'tests/unit_tests/serialization.cpp')
-rw-r--r-- | tests/unit_tests/serialization.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit_tests/serialization.cpp b/tests/unit_tests/serialization.cpp index 5223298cd..01dff3e99 100644 --- a/tests/unit_tests/serialization.cpp +++ b/tests/unit_tests/serialization.cpp @@ -565,7 +565,7 @@ TEST(Serialization, serializes_ringct_types) rct::skpkGen(Sk, Pk); destinations.push_back(Pk); //compute rct data with mixin 500 - s0 = rct::genRct(sc, pc, destinations, amounts, 3); + s0 = rct::genRct(sc, pc, destinations, amounts, rct::zero(), 3); mg0 = s0.MG; ASSERT_TRUE(serialization::dump_binary(mg0, blob)); |