We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 605d6aa commit dde4dd3Copy full SHA for dde4dd3
filecoin-proofs/tests/regression.rs
@@ -125,7 +125,7 @@ pub(crate) fn regression_verify_seal_proof(record: &SealRegressionRecord) -> Res
125
r.seed,
126
&r.proof,
127
),
128
- SECTOR_SIZE_4_KIB | SECTOR_SIZE_16_KIB | SECTOR_SIZE_32_KIB => true,
+ 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,
@@ -146,7 +146,7 @@ pub(crate) fn regression_verify_seal_proof(record: &SealRegressionRecord) -> Res
146
147
148
149
- SECTOR_SIZE_1_GIB => true,
+ SECTOR_SIZE_1_GIB => Ok(true),
150
SECTOR_SIZE_32_GIB => verify_seal::<SectorShape32GiB>(
151
152
0 commit comments