101 lines
3.2 KiB
Go
101 lines
3.2 KiB
Go
// +build debug 2k
|
|
|
|
package build
|
|
|
|
import (
|
|
"os"
|
|
"strconv"
|
|
|
|
"github.com/ipfs/go-cid"
|
|
|
|
"github.com/filecoin-project/go-state-types/abi"
|
|
"github.com/filecoin-project/lotus/chain/actors/policy"
|
|
)
|
|
|
|
const BootstrappersFile = ""
|
|
const GenesisFile = ""
|
|
|
|
var UpgradeBreezeHeight = abi.ChainEpoch(-1)
|
|
|
|
const BreezeGasTampingDuration = 0
|
|
|
|
var UpgradeSmokeHeight = abi.ChainEpoch(-1)
|
|
var UpgradeIgnitionHeight = abi.ChainEpoch(-2)
|
|
var UpgradeRefuelHeight = abi.ChainEpoch(-3)
|
|
var UpgradeTapeHeight = abi.ChainEpoch(-4)
|
|
|
|
var UpgradeActorsV2Height = abi.ChainEpoch(-5)
|
|
var UpgradeLiftoffHeight = abi.ChainEpoch(-6)
|
|
|
|
var UpgradeKumquatHeight = abi.ChainEpoch(-7)
|
|
var UpgradeCalicoHeight = abi.ChainEpoch(-8)
|
|
var UpgradePersianHeight = abi.ChainEpoch(-9)
|
|
var UpgradeOrangeHeight = abi.ChainEpoch(-10)
|
|
var UpgradeClausHeight = abi.ChainEpoch(-11)
|
|
|
|
var UpgradeActorsV3Height = abi.ChainEpoch(-12)
|
|
|
|
var UpgradeNorwegianHeight = abi.ChainEpoch(-13)
|
|
|
|
var UpgradeActorsV4Height = abi.ChainEpoch(-14)
|
|
|
|
var DrandSchedule = map[abi.ChainEpoch]DrandEnum{
|
|
0: DrandMainnet,
|
|
}
|
|
|
|
func init() {
|
|
policy.SetSupportedProofTypes(abi.RegisteredSealProof_StackedDrg2KiBV1, abi.RegisteredSealProof_StackedDrg8MiBV1)
|
|
policy.SetConsensusMinerMinPower(abi.NewStoragePower(2048))
|
|
policy.SetMinVerifiedDealSize(abi.NewStoragePower(256))
|
|
policy.SetPreCommitChallengeDelay(abi.ChainEpoch(10))
|
|
|
|
getUpgradeHeight := func(ev string, def abi.ChainEpoch) abi.ChainEpoch {
|
|
hs, found := os.LookupEnv(ev)
|
|
if found {
|
|
h, err := strconv.Atoi(hs)
|
|
if err != nil {
|
|
log.Panicf("failed to parse %s env var", ev)
|
|
}
|
|
|
|
return abi.ChainEpoch(h)
|
|
}
|
|
|
|
return def
|
|
}
|
|
|
|
UpgradeBreezeHeight = getUpgradeHeight("LOTUS_BREEZE_HEIGHT", UpgradeBreezeHeight)
|
|
UpgradeSmokeHeight = getUpgradeHeight("LOTUS_SMOKE_HEIGHT", UpgradeSmokeHeight)
|
|
UpgradeIgnitionHeight = getUpgradeHeight("LOTUS_IGNITION_HEIGHT", UpgradeIgnitionHeight)
|
|
UpgradeRefuelHeight = getUpgradeHeight("LOTUS_REFUEL_HEIGHT", UpgradeRefuelHeight)
|
|
UpgradeTapeHeight = getUpgradeHeight("LOTUS_TAPE_HEIGHT", UpgradeTapeHeight)
|
|
UpgradeActorsV2Height = getUpgradeHeight("LOTUS_ACTORSV2_HEIGHT", UpgradeActorsV2Height)
|
|
UpgradeLiftoffHeight = getUpgradeHeight("LOTUS_LIFTOFF_HEIGHT", UpgradeLiftoffHeight)
|
|
UpgradeKumquatHeight = getUpgradeHeight("LOTUS_KUMQUAT_HEIGHT", UpgradeKumquatHeight)
|
|
UpgradeCalicoHeight = getUpgradeHeight("LOTUS_CALICO_HEIGHT", UpgradeCalicoHeight)
|
|
UpgradePersianHeight = getUpgradeHeight("LOTUS_PERSIAN_HEIGHT", UpgradePersianHeight)
|
|
UpgradeOrangeHeight = getUpgradeHeight("LOTUS_ORANGE_HEIGHT", UpgradeOrangeHeight)
|
|
UpgradeClausHeight = getUpgradeHeight("LOTUS_CLAUS_HEIGHT", UpgradeClausHeight)
|
|
UpgradeActorsV3Height = getUpgradeHeight("LOTUS_ACTORSV3_HEIGHT", UpgradeActorsV3Height)
|
|
UpgradeNorwegianHeight = getUpgradeHeight("LOTUS_NORWEGIAN_HEIGHT", UpgradeNorwegianHeight)
|
|
UpgradeActorsV4Height = getUpgradeHeight("LOTUS_ACTORSV4_HEIGHT", UpgradeActorsV4Height)
|
|
|
|
BuildType |= Build2k
|
|
}
|
|
|
|
const BlockDelaySecs = uint64(4)
|
|
|
|
const PropagationDelaySecs = uint64(1)
|
|
|
|
// SlashablePowerDelay is the number of epochs after ElectionPeriodStart, after
|
|
// which the miner is slashed
|
|
//
|
|
// Epochs
|
|
const SlashablePowerDelay = 20
|
|
|
|
// Epochs
|
|
const InteractivePoRepConfidence = 6
|
|
|
|
const BootstrapPeerThreshold = 1
|
|
|
|
var WhitelistedBlock = cid.Undef
|