From 6c3e8b33410f1339b121801a4b1b5e6e6d409de4 Mon Sep 17 00:00:00 2001 From: Alfredo Garcia Date: Thu, 13 May 2021 09:28:25 -0300 Subject: [PATCH] remove some spaces after newlines --- rfcs/0001-messages.md | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/rfcs/0001-messages.md b/rfcs/0001-messages.md index a87f14b..2986244 100644 --- a/rfcs/0001-messages.md +++ b/rfcs/0001-messages.md @@ -92,8 +92,7 @@ const BASIC_FROST_SERIALIZATION: MsgVersion = MsgVersion(0); /// "When performing Shamir secret sharing, a polynomial `f(x)` is used to generate /// each party’s share of the secret. The actual secret is `f(0)` and the party with /// ID `i` will be given a share with value `f(i)`. -/// Since a DKG may be implemented in the future, we recommend that the ID `0` -/// be declared invalid." +/// Since a DKG may be implemented in the future, we recommend that the ID `0` be declared invalid." /// https://raw.githubusercontent.com/ZcashFoundation/redjubjub/main/zcash-frost-audit-report-20210323.pdf#d enum ParticipantId { /// A serialized participant ID for a signer. @@ -135,10 +134,10 @@ struct messages::SharePackage { secret_share: frost::Scalar, /// 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` + /// for a secret polynomial _f_: `frost::SharePackage.share.commitment` share_commitment: Vec, /// The public signing key that represents the entire group: - /// `frost::SharePackage.group_public`. + /// `frost::SharePackage.group_public`. group_public: jubjub::AffinePoint, } @@ -170,10 +169,9 @@ struct messages::SigningPackage { /// The data required to serialize `frost::SignatureShare`. /// /// Each signer sends their signatures to the aggregator who is going to collect them -/// and generate a final spend signature. +/// and generate a final spend signature. struct messages::SignatureShare { - /// This participant's signature over the message: - /// `frost::SignatureShare.signature` + /// This participant's signature over the message: `frost::SignatureShare.signature` signature: frost::Scalar, }