remove some spaces after newlines

This commit is contained in:
Alfredo Garcia 2021-05-13 09:28:25 -03:00 committed by Deirdre Connolly
parent dc5f2da1d1
commit 6c3e8b3341
1 changed files with 5 additions and 7 deletions

View File

@ -92,8 +92,7 @@ const BASIC_FROST_SERIALIZATION: MsgVersion = MsgVersion(0);
/// "When performing Shamir secret sharing, a polynomial `f(x)` is used to generate /// "When performing Shamir secret sharing, a polynomial `f(x)` is used to generate
/// each partys share of the secret. The actual secret is `f(0)` and the party with /// each partys 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)`. /// 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` /// Since a DKG may be implemented in the future, we recommend that the ID `0` be declared invalid."
/// be declared invalid."
/// https://raw.githubusercontent.com/ZcashFoundation/redjubjub/main/zcash-frost-audit-report-20210323.pdf#d /// https://raw.githubusercontent.com/ZcashFoundation/redjubjub/main/zcash-frost-audit-report-20210323.pdf#d
enum ParticipantId { enum ParticipantId {
/// A serialized participant ID for a signer. /// A serialized participant ID for a signer.
@ -172,8 +171,7 @@ struct messages::SigningPackage {
/// Each signer sends their signatures to the aggregator who is going to collect them /// 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 { struct messages::SignatureShare {
/// This participant's signature over the message: /// This participant's signature over the message: `frost::SignatureShare.signature`
/// `frost::SignatureShare.signature`
signature: frost::Scalar, signature: frost::Scalar,
} }