mirror of
https://github.com/monero-project/monero.git
synced 2025-07-30 09:18:44 -04:00
ringct: remove unused senderPk from ecdhTuple
This was an early ringct field, which was never used in production
This commit is contained in:
parent
7d37598158
commit
b6534c40e6
4 changed files with 0 additions and 8 deletions
|
@ -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()
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue