From a536404e59541bfa5e89c9c0baf5be823a368d9d Mon Sep 17 00:00:00 2001 From: Alfredo Garcia Date: Fri, 21 May 2021 20:04:30 -0300 Subject: [PATCH] update a field description --- rfcs/0001-messages.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rfcs/0001-messages.md b/rfcs/0001-messages.md index 50073a2..69ee51a 100644 --- a/rfcs/0001-messages.md +++ b/rfcs/0001-messages.md @@ -137,9 +137,9 @@ struct messages::SharePackage { group_public: VerificationKey, /// This participant's secret key share: `frost::SharePackage.share.value`. secret_share: frost::Secret, - /// Commitment for the signer as a single jubjub::AffinePoint. - /// A set of commitments to the coefficients (which themselves are scalars) - /// for a secret polynomial _f_: `frost::SharePackage.share.commitment` + /// The commitments to the coefficients for our secret polynomial _f_, + /// used to generate participants' key shares. Participants use these to perform + /// verifiable secret sharing. share_commitment: Vec, }