Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: peg <[email protected]>
Co-authored-by: David <[email protected]>
  • Loading branch information
3 people authored Sep 23, 2024
1 parent 0074333 commit 0259ec5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/client/src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ pub async fn sign(
let random_index = rng.gen_range(0..validators_info.len());
let validator_info = &validators_info[random_index];

// Make http requests to TSS servers
// Make http request to TSS server
let encrypted_message = EncryptedSignedMessage::new(
&user_keypair,
signature_request_vec.clone(),
Expand Down
2 changes: 1 addition & 1 deletion crates/client/src/user.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ pub struct UserSignatureRequest {
pub signature_verifying_key: Vec<u8>,
}

/// Represents an unparsed, transaction request coming from the relayer to a signer.
/// Represents an unparsed transaction request coming from a relayer to a signer.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct RelayerSignatureRequest {
/// Hex-encoded raw data to be signed (eg. hex-encoded RLP-serialized Ethereum transaction)
Expand Down

0 comments on commit 0259ec5

Please sign in to comment.