Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: clearer Synthetic PoRep separation #1720

Merged
merged 4 commits into from
Dec 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions storage-proofs-porep/src/stacked/vanilla/params.rs
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,9 @@ pub struct PublicInputs<T: Domain, S: Domain> {

impl<T: Domain, S: Domain> PublicInputs<T, S> {
/// If the porep challenge randomness `self.seed` is set, this method returns the porep
/// challenges for partition `k`; otherwise if `self.seed` is `None`, returns the entire
/// synthetic challenge set. Note synthetic challenges are generated in a single partition
/// `k = 0`.
/// challenges for partition `k` (for synth and non-synth poreps); otherwise if `self.seed` is
/// `None`, returns the entire synthetic challenge set. Note synthetic challenges are generated
/// in a single partition `k = 0`.
pub fn challenges(
&self,
layer_challenges: &LayerChallenges,
Expand Down
Loading