Skip to content

Commit

Permalink
fix: little useful comment
Browse files Browse the repository at this point in the history
  • Loading branch information
sstelfox committed May 30, 2024
1 parent 5ab0bb7 commit 704b1a4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/filesystem/file_content.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,16 @@ const FILE_CONTENT_TYPE_ENCRYPTED: u8 = 0x03;
pub enum FileContent {
Encrypted {
locked_access_key: SymLockedAccessKey,

/// This is the blake3 CID of the plaintext content of the File
cid: Cid,
data_size: u64,
content: Vec<ContentReference>,
},
Public {
/// This is the blake3 CID of the plaintext content of the File
cid: Cid,

data_size: u64,
content: Vec<ContentReference>,
},
Expand Down

0 comments on commit 704b1a4

Please sign in to comment.