fix unresolved rustdoc links to types (#507)

* fix unresolved rustdoc links to types

* frost::round2::SignatureShare
This commit is contained in:
Deirdre Connolly 2023-08-30 17:55:54 -04:00 committed by GitHub
parent 478f914b31
commit 15bd4bb3ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -5,9 +5,9 @@
//! - Do Round 1 the same way as regular FROST;
//! - The Coordinator should generate a [`RandomizedParams`] and send
//! the [`RandomizedParams::randomizer`] to all participants, using a
//! confidential channel, along with the regular [`SigningPackage`];
//! confidential channel, along with the regular [`SigningPackage`][frost::SigningPackage];
//! - Each participant should call [`sign`] and send the resulting
//! [`SignatureShare`] back to the Coordinator;
//! [`SignatureShare`][frost::round2::SignatureShare] back to the Coordinator;
//! - The Coordinator should then call [`aggregate`].
#![allow(non_snake_case)]