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 (
|
2020-10-07 22:17:24 +00:00
|
|
|
"math"
|
2020-10-07 13:01:30 +00:00
|
|
|
"os"
|
|
|
|
|
2020-10-06 05:59:15 +00:00
|
|
|
"github.com/filecoin-project/go-address"
|
2020-09-07 03:49:10 +00:00
|
|
|
"github.com/filecoin-project/go-state-types/abi"
|
2020-09-23 19:24:51 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/actors/policy"
|
|
|
|
|
2020-10-08 01:09:33 +00:00
|
|
|
builtin2 "github.com/filecoin-project/specs-actors/v2/actors/builtin"
|
2020-02-10 18:21:10 +00:00
|
|
|
)
|
|
|
|
|
2020-09-09 18:37:12 +00:00
|
|
|
var DrandSchedule = map[abi.ChainEpoch]DrandEnum{
|
2020-09-10 18:36:30 +00:00
|
|
|
0: DrandIncentinet,
|
|
|
|
UpgradeSmokeHeight: DrandMainnet,
|
2020-09-09 18:37:12 +00:00
|
|
|
}
|
|
|
|
|
2020-09-07 18:51:33 +00:00
|
|
|
const UpgradeBreezeHeight = 41280
|
2020-09-07 18:19:45 +00:00
|
|
|
const BreezeGasTampingDuration = 120
|
|
|
|
|
2020-09-10 18:36:30 +00:00
|
|
|
const UpgradeSmokeHeight = 51000
|
|
|
|
|
2020-09-24 21:30:11 +00:00
|
|
|
const UpgradeIgnitionHeight = 94000
|
2020-10-06 21:47:03 +00:00
|
|
|
const UpgradeRefuelHeight = 130800
|
2020-10-07 22:17:24 +00:00
|
|
|
|
|
|
|
var UpgradeActorsV2Height = abi.ChainEpoch(138720)
|
2020-09-28 22:50:54 +00:00
|
|
|
|
2020-10-12 05:31:46 +00:00
|
|
|
const UpgradeTapeHeight = 140760
|
|
|
|
|
2020-09-24 21:30:11 +00:00
|
|
|
// 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-10-17 00:35:46 +00:00
|
|
|
const UpgradeKumquatHeight = 170000
|
|
|
|
|
2020-05-07 05:05:43 +00:00
|
|
|
func init() {
|
2020-09-23 19:24:51 +00:00
|
|
|
policy.SetConsensusMinerMinPower(abi.NewStoragePower(10 << 40))
|
|
|
|
policy.SetSupportedProofTypes(
|
|
|
|
abi.RegisteredSealProof_StackedDrg32GiBV1,
|
|
|
|
abi.RegisteredSealProof_StackedDrg64GiBV1,
|
|
|
|
)
|
2020-10-06 05:59:15 +00:00
|
|
|
|
2020-10-07 13:01:30 +00:00
|
|
|
if os.Getenv("LOTUS_USE_TEST_ADDRESSES") != "1" {
|
|
|
|
SetAddressNetwork(address.Mainnet)
|
|
|
|
}
|
2020-10-06 05:59:15 +00:00
|
|
|
|
2020-10-07 22:17:24 +00:00
|
|
|
if os.Getenv("LOTUS_DISABLE_V2_ACTOR_MIGRATION") == "1" {
|
|
|
|
UpgradeActorsV2Height = math.MaxInt64
|
|
|
|
}
|
|
|
|
|
2020-09-24 21:30:11 +00:00
|
|
|
Devnet = false
|
2019-12-04 16:53:32 +00:00
|
|
|
}
|
|
|
|
|
2020-10-08 01:09:33 +00:00
|
|
|
const BlockDelaySecs = uint64(builtin2.EpochDurationSeconds)
|
2019-11-23 19:13:07 +00:00
|
|
|
|
2020-06-30 14:01:30 +00:00
|
|
|
const PropagationDelaySecs = uint64(6)
|