diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-01-08 23:27:42 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-01-22 23:17:42 +0000 |
commit | b6534c40e641c957ed4869acf5f58df2be97dcac (patch) | |
tree | 25ce8862a0fa64259da34210da1d096ae213869e /tests/unit_tests/device.cpp | |
parent | ringct: the commitment mask is now deterministic (diff) | |
download | monero-b6534c40e641c957ed4869acf5f58df2be97dcac.tar.xz |
ringct: remove unused senderPk from ecdhTuple
This was an early ringct field, which was never used in production
Diffstat (limited to 'tests/unit_tests/device.cpp')
-rw-r--r-- | tests/unit_tests/device.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/unit_tests/device.cpp b/tests/unit_tests/device.cpp index 064a7028e..c0e8fecc1 100644 --- a/tests/unit_tests/device.cpp +++ b/tests/unit_tests/device.cpp @@ -121,12 +121,10 @@ TEST(device, ecdh32) rct::key key = rct::skGen(); tuple.mask = rct::skGen(); tuple.amount = rct::skGen(); - tuple.senderPk = rct::pkGen(); tuple2 = tuple; dev.ecdhEncode(tuple, key, false); dev.ecdhDecode(tuple, key, false); ASSERT_EQ(tuple2.mask, tuple.mask); ASSERT_EQ(tuple2.amount, tuple.amount); - ASSERT_EQ(tuple2.senderPk, tuple.senderPk); } |