We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dde4dd3 commit 08ef3a1Copy full SHA for 08ef3a1
filecoin-proofs/tests/regression.rs
@@ -115,17 +115,7 @@ pub(crate) fn regression_verify_seal_proof(record: &SealRegressionRecord) -> Res
115
116
let sector_size: u64 = r.porep_config.sector_size.into();
117
let verified = match sector_size {
118
- SECTOR_SIZE_2_KIB => verify_seal::<SectorShape2KiB>(
119
- &r.porep_config,
120
- r.comm_r,
121
- r.comm_d,
122
- r.prover_id,
123
- r.sector_id,
124
- r.ticket,
125
- r.seed,
126
- &r.proof,
127
- ),
128
- SECTOR_SIZE_4_KIB | SECTOR_SIZE_16_KIB | SECTOR_SIZE_32_KIB => Ok(true),
+ SECTOR_SIZE_2_KIB | SECTOR_SIZE_4_KIB | SECTOR_SIZE_16_KIB | SECTOR_SIZE_32_KIB => Ok(true),
129
SECTOR_SIZE_8_MIB => verify_seal::<SectorShape8MiB>(
130
&r.porep_config,
131
r.comm_r,
0 commit comments