File tree Expand file tree Collapse file tree
near-mpc-crypto-types/src
threshold-signatures/src/protocol Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -203,7 +203,7 @@ mod tests {
203203 assert_eq ! ( args. payload. as_ecdsa( ) . unwrap( ) , & ecdsa_payload_bytes( ) ) ;
204204 }
205205
206- /// A a sign request whose `payload` field is
206+ /// A sign request whose `payload` field is
207207 /// a raw 32-byte array (no [`Ecdsa`] / [`Eddsa`] tag) — the legacy on-chain
208208 /// wire format predating EdDSA support — must be deserialized as
209209 /// [`Payload::Ecdsa`]
Original file line number Diff line number Diff line change @@ -16,9 +16,8 @@ pub enum MessageType<T> {
1616 Ready ( T ) ,
1717}
1818
19- /// A homemade sturcture that allows counting the number of
20- /// votes gathered during the reliable-broadcast protocol
21- /// only requiring from votes to have trait [`PartialEq`]
19+ /// Counts the votes gathered during the reliable-broadcast protocol,
20+ /// requiring only [`PartialEq`] from the vote type
2221#[ derive( Clone ) ]
2322struct CounterList < T > {
2423 list : Vec < ( T , usize ) > ,
You can’t perform that action at this time.
0 commit comments