2019-11-23 19:13:07 +00:00
|
|
|
// +build !debug
|
2020-04-17 15:58:20 +00:00
|
|
|
// +build !2k
|
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() {
|
|
|
|
power.ConsensusMinerMinPower = big.NewInt(2 << 30)
|
2020-05-12 17:58:12 +00:00
|
|
|
miner.SupportedProofTypes = map[abi.RegisteredProof]struct{}{
|
|
|
|
abi.RegisteredProof_StackedDRG512MiBSeal: {},
|
|
|
|
abi.RegisteredProof_StackedDRG32GiBSeal: {},
|
|
|
|
abi.RegisteredProof_StackedDRG64GiBSeal: {},
|
|
|
|
}
|
2019-12-04 16:53:32 +00:00
|
|
|
}
|
|
|
|
|
2019-11-23 19:13:07 +00:00
|
|
|
// Seconds
|
2020-05-12 17:58:12 +00:00
|
|
|
const BlockDelay = builtin.EpochDurationSeconds
|
2019-11-23 19:13:07 +00:00
|
|
|
|
2019-12-09 23:02:35 +00:00
|
|
|
const PropagationDelay = 6
|