diff --git a/manul/benches/empty_rounds.rs b/manul/benches/empty_rounds.rs index 693c779..6ce657b 100644 --- a/manul/benches/empty_rounds.rs +++ b/manul/benches/empty_rounds.rs @@ -10,8 +10,8 @@ use criterion::{criterion_group, criterion_main, Criterion}; use manul::{ protocol::{ Artifact, Deserializer, DirectMessage, EchoBroadcast, FinalizeError, FinalizeOutcome, FirstRound, LocalError, - NormalBroadcast, Payload, Protocol, ProtocolError, ProtocolMessagePart, ProtocolValidationError, ReceiveError, - Round, RoundId, Serializer, + NormalBroadcast, PartyId, Payload, Protocol, ProtocolError, ProtocolMessagePart, ProtocolValidationError, + ReceiveError, Round, RoundId, Serializer, }, session::{signature::Keypair, SessionOutcome}, testing::{run_sync, BinaryFormat, TestSessionParams, TestSigner, TestVerifier}, @@ -73,7 +73,7 @@ struct Round1Payload; struct Round1Artifact; -impl FirstRound for EmptyRound { +impl FirstRound for EmptyRound { type Inputs = Inputs; fn new( _rng: &mut impl CryptoRngCore, @@ -88,7 +88,7 @@ impl FirstRound for EmptyRo } } -impl Round for EmptyRound { +impl Round for EmptyRound { type Protocol = EmptyProtocol; fn id(&self) -> RoundId {