diff --git a/actors/builtin/miner/policy.go b/actors/builtin/miner/policy.go index cca3c1025..2396f320d 100644 --- a/actors/builtin/miner/policy.go +++ b/actors/builtin/miner/policy.go @@ -22,6 +22,10 @@ var WPoStProvingPeriod = abi.ChainEpoch(builtin.EpochsInDay) // 24 hours PARAM_S // This provides a miner enough time to compute and propagate a Window PoSt proof. var WPoStChallengeWindow = abi.ChainEpoch(30 * 60 / builtin.EpochDurationSeconds) // 30 minutes (48 per day) PARAM_SPEC +// WPoStDisputeWindow is the period after a challenge window ends during which +// PoSts submitted during that period may be disputed. +var WPoStDisputeWindow = 2 * ChainFinality // PARAM_SPEC + // The number of non-overlapping PoSt deadlines in a proving period. // This spreads a miner's Window PoSt work across a proving period. const WPoStPeriodDeadlines = uint64(48) // PARAM_SPEC @@ -224,10 +228,6 @@ const DealLimitDenominator = 134217728 // PARAM_SPEC // for permissioned actor methods and winning block elections. const ConsensusFaultIneligibilityDuration = ChainFinality -// WPoStDisputeWindow is the period after a challenge window ends during which -// PoSts submitted during that period may be disputed. -const WPoStDisputeWindow = 2 * ChainFinality // PARAM_TODO - // DealWeight and VerifiedDealWeight are spacetime occupied by regular deals and verified deals in a sector. // Sum of DealWeight and VerifiedDealWeight should be less than or equal to total SpaceTime of a sector. // Sectors full of VerifiedDeals will have a SectorQuality of VerifiedDealWeightMultiplier/QualityBaseMultiplier.