bb5ba64cca
This reverts commit8b2208fd9a
, reversing changes made to2db6b12b78
. Unfortunately, this is rather tricky code. We've found several issues so far and, while we've fixed a few, there are outstanding issues that would require complex fixes we don't have time to tackle right now. Luckily, this code isn't actually needed by the main Filecoin chain which relies on consensus fault reporting to handle equivocation. So we can just try again later.
148 lines
4.9 KiB
Go
148 lines
4.9 KiB
Go
//go:build debug || 2k
|
|
// +build debug 2k
|
|
|
|
package build
|
|
|
|
import (
|
|
"os"
|
|
"strconv"
|
|
|
|
"github.com/ipfs/go-cid"
|
|
|
|
"github.com/filecoin-project/go-state-types/abi"
|
|
actorstypes "github.com/filecoin-project/go-state-types/actors"
|
|
"github.com/filecoin-project/go-state-types/network"
|
|
|
|
"github.com/filecoin-project/lotus/chain/actors/policy"
|
|
)
|
|
|
|
const BootstrappersFile = ""
|
|
const GenesisFile = ""
|
|
|
|
var NetworkBundle = "devnet"
|
|
var BundleOverrides map[actorstypes.Version]string
|
|
var ActorDebugging = true
|
|
|
|
const GenesisNetworkVersion = network.Version18
|
|
|
|
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 UpgradeAssemblyHeight = abi.ChainEpoch(-5)
|
|
var UpgradeLiftoffHeight = abi.ChainEpoch(-6)
|
|
|
|
var UpgradeKumquatHeight = abi.ChainEpoch(-7)
|
|
var UpgradeCalicoHeight = abi.ChainEpoch(-9)
|
|
var UpgradePersianHeight = abi.ChainEpoch(-10)
|
|
var UpgradeOrangeHeight = abi.ChainEpoch(-11)
|
|
var UpgradeClausHeight = abi.ChainEpoch(-12)
|
|
|
|
var UpgradeTrustHeight = abi.ChainEpoch(-13)
|
|
|
|
var UpgradeNorwegianHeight = abi.ChainEpoch(-14)
|
|
|
|
var UpgradeTurboHeight = abi.ChainEpoch(-15)
|
|
|
|
var UpgradeHyperdriveHeight = abi.ChainEpoch(-16)
|
|
|
|
var UpgradeChocolateHeight = abi.ChainEpoch(-17)
|
|
|
|
var UpgradeOhSnapHeight = abi.ChainEpoch(-18)
|
|
|
|
var UpgradeSkyrHeight = abi.ChainEpoch(-19)
|
|
|
|
var UpgradeSharkHeight = abi.ChainEpoch(-20)
|
|
|
|
var UpgradeHyggeHeight = abi.ChainEpoch(-21)
|
|
|
|
var UpgradeLightningHeight = abi.ChainEpoch(30)
|
|
|
|
var UpgradeThunderHeight = abi.ChainEpoch(1000)
|
|
|
|
var DrandSchedule = map[abi.ChainEpoch]DrandEnum{
|
|
0: DrandMainnet,
|
|
}
|
|
|
|
var SupportedProofTypes = []abi.RegisteredSealProof{
|
|
abi.RegisteredSealProof_StackedDrg2KiBV1,
|
|
abi.RegisteredSealProof_StackedDrg8MiBV1,
|
|
}
|
|
var ConsensusMinerMinPower = abi.NewStoragePower(2048)
|
|
var MinVerifiedDealSize = abi.NewStoragePower(256)
|
|
var PreCommitChallengeDelay = abi.ChainEpoch(10)
|
|
|
|
func init() {
|
|
policy.SetSupportedProofTypes(SupportedProofTypes...)
|
|
policy.SetConsensusMinerMinPower(ConsensusMinerMinPower)
|
|
policy.SetMinVerifiedDealSize(MinVerifiedDealSize)
|
|
policy.SetPreCommitChallengeDelay(PreCommitChallengeDelay)
|
|
|
|
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)
|
|
UpgradeAssemblyHeight = getUpgradeHeight("LOTUS_ACTORSV2_HEIGHT", UpgradeAssemblyHeight)
|
|
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)
|
|
UpgradeTrustHeight = getUpgradeHeight("LOTUS_ACTORSV3_HEIGHT", UpgradeTrustHeight)
|
|
UpgradeNorwegianHeight = getUpgradeHeight("LOTUS_NORWEGIAN_HEIGHT", UpgradeNorwegianHeight)
|
|
UpgradeTurboHeight = getUpgradeHeight("LOTUS_ACTORSV4_HEIGHT", UpgradeTurboHeight)
|
|
UpgradeHyperdriveHeight = getUpgradeHeight("LOTUS_HYPERDRIVE_HEIGHT", UpgradeHyperdriveHeight)
|
|
UpgradeChocolateHeight = getUpgradeHeight("LOTUS_CHOCOLATE_HEIGHT", UpgradeChocolateHeight)
|
|
UpgradeOhSnapHeight = getUpgradeHeight("LOTUS_OHSNAP_HEIGHT", UpgradeOhSnapHeight)
|
|
UpgradeSkyrHeight = getUpgradeHeight("LOTUS_SKYR_HEIGHT", UpgradeSkyrHeight)
|
|
UpgradeSharkHeight = getUpgradeHeight("LOTUS_SHARK_HEIGHT", UpgradeSharkHeight)
|
|
UpgradeHyggeHeight = getUpgradeHeight("LOTUS_HYGGE_HEIGHT", UpgradeHyggeHeight)
|
|
UpgradeLightningHeight = getUpgradeHeight("LOTUS_LIGHTNING_HEIGHT", UpgradeLightningHeight)
|
|
UpgradeThunderHeight = getUpgradeHeight("LOTUS_THUNDER_HEIGHT", UpgradeThunderHeight)
|
|
|
|
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
|
|
|
|
// ChainId defines the chain ID used in the Ethereum JSON-RPC endpoint.
|
|
// As per https://github.com/ethereum-lists/chains
|
|
const Eip155ChainId = 31415926
|
|
|
|
var WhitelistedBlock = cid.Undef
|