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 (
|
|
|
|
"github.com/filecoin-project/specs-actors/actors/abi"
|
2020-05-07 05:05:43 +00:00
|
|
|
"github.com/filecoin-project/specs-actors/actors/abi/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-05-07 05:05:43 +00:00
|
|
|
func init() {
|
2020-06-16 11:59:15 +00:00
|
|
|
power.ConsensusMinerMinPower = big.NewInt(1024 << 30)
|
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)
|