File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -20,10 +20,10 @@ const IPFS_GATEWAYS: &[&str] = &[
2020const AES_KEY_LENGTH : usize = 32 ;
2121const AES_IV_LENGTH : usize = 16 ;
2222
23- /// Represents a dataset for bulk processing in a Trusted Execution Environment (TEE).
23+ /// Represents a dataset in a Trusted Execution Environment (TEE).
2424///
2525/// This structure contains all the information needed to download, verify, and decrypt
26- /// a single dataset as part of bulk processing .
26+ /// a single dataset.
2727#[ cfg_attr( test, derive( Debug ) ) ]
2828#[ derive( Clone , Default ) ]
2929pub struct Dataset {
@@ -72,7 +72,7 @@ impl Dataset {
7272 info ! ( "Successfully downloaded from {full_url}" ) ;
7373 Some ( content)
7474 } else {
75- info ! ( "Failed to download from {full_url}" ) ;
75+ error ! ( "Failed to download from {full_url}" ) ;
7676 None
7777 }
7878 } )
You can’t perform that action at this time.
0 commit comments