Skip to content

Commit

Permalink
Apply suggestions from review
Browse files Browse the repository at this point in the history
  • Loading branch information
ameba23 committed Nov 21, 2024
1 parent 72887e8 commit cba96bf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions crates/test-cli/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -189,12 +189,12 @@ enum CliCommand {
#[arg(short, long)]
mnemonic_option: Option<String>,
},
/// Request a TDX quote from a TS server and write it to a file
/// Request a TDX quote from a TSS server and write it to a file.
GetTdxQuote {
/// The socket address of the TS server, eg: 127.0.0.1:3002
/// The socket address of the TS server, eg: `127.0.0.1:3002`
tss_endpoint: String,
/// The filename to write the quote to. Defaults to quote.dat
#[arg(short, long)]
/// The filename to write the quote to. Defaults to `quote.dat`
#[arg(long)]
output_filename: Option<String>,
},
}
Expand Down
1 change: 1 addition & 0 deletions crates/threshold-signature-server/src/attestation/api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ pub async fn attest(

/// Retrieve a quote by requesting a nonce from the chain and return the quote in the HTTP response
/// body.
///
/// This is used by node operators to get a quote for use in the `validate`, `change_endpoint`
/// and `change_tss_accounts` extrinsics.
pub async fn get_attest(
Expand Down

0 comments on commit cba96bf

Please sign in to comment.