diff --git a/sachy-crypto/src/lib.rs b/sachy-crypto/src/lib.rs index f022ee2..a9890fb 100644 --- a/sachy-crypto/src/lib.rs +++ b/sachy-crypto/src/lib.rs @@ -42,9 +42,9 @@ pub struct EncapsulatedPublicKey(Secp256k1EncapsulationKey); /// and then whether sending/receiving during communication. #[derive(Debug, PartialEq, Eq, Clone, Copy)] pub enum Role { - /// Client SENDS data + /// Participant SENDS data Sender, - /// Server RECEIVES data + /// Participant RECEIVES data Receiver, }