lotus/build/params_testnet.go

26 lines
689 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-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
}
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