github.com/filecoin-project/specs-actors/v4@v4.0.2/actors/builtin/power/policy.go (about) 1 package power 2 3 // The number of miners that must meet the consensus minimum miner power before that minimum power is enforced 4 // as a condition of leader election. 5 // This ensures a network still functions before any miners reach that threshold. 6 const ConsensusMinerMinMiners = 4 // PARAM_SPEC 7 8 // Maximum number of prove-commits each miner can submit in one epoch. 9 // 10 // This limits the number of proof partitions we may need to load in the cron call path. 11 // Onboarding 1EiB/year requires at least 32 prove-commits per epoch. 12 const MaxMinerProveCommitsPerEpoch = 200 // PARAM_SPEC 13