Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
updated from k < 3 to 0 < k <= 3 (#1119)
Browse files Browse the repository at this point in the history
Co-authored-by: dud1337 <grant@dud.li>
  • Loading branch information
Dudley and dud1337 authored May 21, 2020
1 parent f56b4a0 commit 6fe4fba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion erasure-coding/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
//! The way we accomplish this is by erasure coding the data into n pieces
//! and constructing a merkle root of the data.
//!
//! Each of n validators stores their piece of data. We assume n=3f+k, k < 3.
//! Each of n validators stores their piece of data. We assume n=3f+k, 0 < k ≤ 3.
//! f is the maximum number of faulty validators in the system.
//! The data is coded so any f+1 chunks can be used to reconstruct the full data.

Expand Down

0 comments on commit 6fe4fba

Please sign in to comment.