pub fn audit_sector_sync<'a, Sector>(
public_key: &'a PublicKey,
global_challenge: &Blake3Hash,
solution_range: SolutionRange,
sector: Sector,
sector_metadata: &'a SectorMetadataChecksummed,
) -> Result<Option<AuditResult<'a, Sector>>, AuditingError>where
Sector: ReadAtSync + 'a,
Expand description
Audit a single sector and generate a stream of solutions.
This is primarily helpful in test environment, prefer audit_plot_sync
for auditing real plots.