2019-11-23 19:13:07 +00:00
|
|
|
// +build !debug
|
2020-04-17 15:58:20 +00:00
|
|
|
// +build !2k
|
2020-06-30 13:18:01 +00:00
|
|
|
// +build !testground
|
2019-11-23 19:13:07 +00:00
|
|
|
|
|
|
|
package build
|
|
|
|
|
2020-02-10 18:21:10 +00:00
|
|
|
import (
|
2020-09-07 03:49:10 +00:00
|
|
|
"github.com/filecoin-project/go-state-types/abi"
|
|
|
|
"github.com/filecoin-project/go-state-types/big"
|
2020-05-12 17:58:12 +00:00
|
|
|
"github.com/filecoin-project/specs-actors/actors/builtin"
|
|
|
|
"github.com/filecoin-project/specs-actors/actors/builtin/miner"
|
2020-05-07 05:05:43 +00:00
|
|
|
"github.com/filecoin-project/specs-actors/actors/builtin/power"
|
2020-02-10 18:21:10 +00:00
|
|
|
)
|
|
|
|
|
2020-09-07 18:51:33 +00:00
|
|
|
const UpgradeBreezeHeight = 41280
|
2020-09-07 18:19:45 +00:00
|
|
|
const BreezeGasTampingDuration = 120
|
|
|
|
|
2020-05-07 05:05:43 +00:00
|
|
|
func init() {
|
2020-08-21 00:21:33 +00:00
|
|
|
power.ConsensusMinerMinPower = big.NewInt(10 << 40)
|
2020-06-15 16:30:49 +00:00
|
|
|
miner.SupportedProofTypes = map[abi.RegisteredSealProof]struct{}{
|
2020-06-18 12:30:00 +00:00
|
|
|
abi.RegisteredSealProof_StackedDrg32GiBV1: {},
|
|
|
|
abi.RegisteredSealProof_StackedDrg64GiBV1: {},
|
2020-05-12 17:58:12 +00:00
|
|
|
}
|
2019-12-04 16:53:32 +00:00
|
|
|
}
|
|
|
|
|
2020-06-30 13:58:34 +00:00
|
|
|
const BlockDelaySecs = uint64(builtin.EpochDurationSeconds)
|
2019-11-23 19:13:07 +00:00
|
|
|
|
2020-06-30 14:01:30 +00:00
|
|
|
const PropagationDelaySecs = uint64(6)
|