lotus/build/params_testnet.go

27 lines
741 B
Go
Raw Normal View History

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() {
2020-05-26 17:55:16 +00:00
power.ConsensusMinerMinPower = big.NewInt(1024 << 20)
2020-06-15 16:30:49 +00:00
miner.SupportedProofTypes = map[abi.RegisteredSealProof]struct{}{
abi.RegisteredSealProof_StackedDrg512MiBV1: {},
abi.RegisteredSealProof_StackedDrg32GiBV1: {},
abi.RegisteredSealProof_StackedDrg64GiBV1: {},
2020-05-12 17:58:12 +00:00
}
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