File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
cli/src/attesteer/commands Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ pub struct SendDCAPQuoteCmd {
3232
3333impl SendDCAPQuoteCmd {
3434 pub fn run ( & self , cli : & Cli ) {
35- let direct_api = get_worker_api_direct ( & cli) ;
35+ let direct_api = get_worker_api_direct ( cli) ;
3636 let hex_encoded_quote = read_to_string ( & self . quote )
3737 . map_err ( |e| error ! ( "Opening hex encoded DCAP quote file failed: {:#?}" , e) )
3838 . unwrap ( ) ;
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ pub struct SendIASAttestationReportCmd {
3333
3434impl SendIASAttestationReportCmd {
3535 pub fn run ( & self , cli : & Cli ) {
36- let direct_api = get_worker_api_direct ( & cli) ;
36+ let direct_api = get_worker_api_direct ( cli) ;
3737 let hex_encoded_report = read_to_string ( & self . report )
3838 . map_err ( |e| error ! ( "Opening hex encoded IAS attestation report file failed: {:#?}" , e) )
3939 . unwrap ( ) ;
You can’t perform that action at this time.
0 commit comments