Skip to content

Commit

Permalink
remove todo
Browse files Browse the repository at this point in the history
  • Loading branch information
kevaundray committed Aug 14, 2024
1 parent 6c69097 commit 7b73675
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cryptography/erasure_codes/src/reed_solomon.rs
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,9 @@ impl ReedSolomon {
}
/// Returns the maximum number of block erasures indices that can be missing
/// before we are not able to recover the message.
///
/// Note: This can also be computed by doing block_size / expansion_factor
pub fn acceptable_num_block_erasures(&self) -> usize {
// TODO Note: We could compute this as self.block_size / expansion_factor
self.acceptable_num_random_erasures() / self.num_blocks
}

Expand Down

0 comments on commit 7b73675

Please sign in to comment.