ringct: remove unused senderPk from ecdhTuple

This was an early ringct field, which was never used in production
This commit is contained in:
moneromooo-monero 2019-01-08 23:27:42 +00:00
parent 7d37598158
commit b6534c40e6
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3
4 changed files with 0 additions and 8 deletions

View file

@ -120,17 +120,14 @@ namespace rct {
// If the pedersen commitment to an amount is C = aG + bH,
// "mask" contains a 32 byte key a
// "amount" contains a hex representation (in 32 bytes) of a 64 bit number
// "senderPk" is not the senders actual public key, but a one-time public key generated for
// the purpose of the ECDH exchange
struct ecdhTuple {
key mask;
key amount;
key senderPk;
BEGIN_SERIALIZE_OBJECT()
FIELD(mask) // not saved from v2 BPs
FIELD(amount)
// FIELD(senderPk) // not serialized, as we do not use it in monero currently
END_SERIALIZE()
};