lotus/build/params_testnet.go

43 lines
1.1 KiB
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
// +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/lotus/chain/actors/policy"
builtin0 "github.com/filecoin-project/specs-actors/actors/builtin"
2020-02-10 18:21:10 +00:00
)
var DrandSchedule = map[abi.ChainEpoch]DrandEnum{
0: DrandIncentinet,
UpgradeSmokeHeight: DrandMainnet,
}
const UpgradeBreezeHeight = 41280
const BreezeGasTampingDuration = 120
const UpgradeSmokeHeight = 51000
2020-09-24 21:30:11 +00:00
const UpgradeIgnitionHeight = 94000
// This signals our tentative epoch for mainnet launch. Can make it later, but not earlier.
// Miners, clients, developers, custodians all need time to prepare.
// We still have upgrades and state changes to do, but can happen after signaling timing here.
const UpgradeLiftoffHeight = 148888
2020-05-07 05:05:43 +00:00
func init() {
policy.SetConsensusMinerMinPower(abi.NewStoragePower(10 << 40))
policy.SetSupportedProofTypes(
abi.RegisteredSealProof_StackedDrg32GiBV1,
abi.RegisteredSealProof_StackedDrg64GiBV1,
)
2020-09-24 21:30:11 +00:00
Devnet = false
2019-12-04 16:53:32 +00:00
}
const BlockDelaySecs = uint64(builtin0.EpochDurationSeconds)
2019-11-23 19:13:07 +00:00
2020-06-30 14:01:30 +00:00
const PropagationDelaySecs = uint64(6)