File tree 1 file changed +4
-3
lines changed
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -328,13 +328,14 @@ parameter_types! {
328
328
// Fault declaration/recovery functionality has been postponed, this won't make a difference until #592 is done.
329
329
pub const FaultMaxAge : BlockNumber = 1 * DAYS ;
330
330
pub const FaultDeclarationCutoffSlack : BlockNumber = 1 * MINUTES ;
331
- pub const FaultDeclarationCutoff : BlockNumber = WPoStChallengeLookBack + FaultDeclarationCutoffSlack ;
331
+ // WPoStChallengeLookBack + a bit of slack.
332
+ pub const FaultDeclarationCutoff : BlockNumber = ( 10 * MINUTES ) + ( 1 * MINUTES ) ;
332
333
// <https://github.com/filecoin-project/builtin-actors/blob/8d957d2901c0f2044417c268f0511324f591cb92/runtime/src/runtime/policy.rs#L299>
333
334
pub const AddressedSectorsMax : u64 = 25_000 ;
334
335
335
336
pub const MinSectorExpiration : BlockNumber = 1 * DAYS ;
336
- pub const MaxSectorExpirationSlack : BlockNumber = 30 * DAYS ;
337
- pub const MaxSectorExpiration : BlockNumber = 365 * DAYS + MaxSectorExpirationSlack ;
337
+ // MinDealDuration + a bit of slack.
338
+ pub const MaxSectorExpiration : BlockNumber = 365 * DAYS + 30 * DAYS ;
338
339
pub const SectorMaximumLifetime : BlockNumber = 365 * DAYS ;
339
340
// Market Pallet
340
341
pub const MinDealDuration : u64 = 1 * DAYS ;
You can’t perform that action at this time.
0 commit comments