lotus/build/params_2k.go

58 lines
1.2 KiB
Go
Raw Normal View History

2020-04-17 15:58:20 +00:00
// +build debug 2k
package build
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"
2020-04-17 15:58:20 +00:00
)
2021-01-05 05:32:15 +00:00
const BootstrappersFile = ""
const GenesisFile = ""
2020-09-09 21:10:35 +00:00
const UpgradeBreezeHeight = -1
const BreezeGasTampingDuration = 0
const UpgradeSmokeHeight = -1
2020-09-24 21:30:11 +00:00
const UpgradeIgnitionHeight = -2
2020-10-06 21:47:03 +00:00
const UpgradeRefuelHeight = -3
const UpgradeTapeHeight = -4
const UpgradeActorsV2Height = 10
const UpgradeLiftoffHeight = -5
2020-11-05 09:21:03 +00:00
const UpgradeKumquatHeight = 15
const UpgradeCalicoHeight = 20
const UpgradePersianHeight = 25
const UpgradeOrangeHeight = 27
const UpgradeClausHeight = 30
2021-01-19 07:34:28 +00:00
const UpgradeActorsV3Height = 35
2021-01-19 03:42:23 +00:00
var DrandSchedule = map[abi.ChainEpoch]DrandEnum{
0: DrandMainnet,
}
2020-04-17 15:58:20 +00:00
func init() {
policy.SetSupportedProofTypes(abi.RegisteredSealProof_StackedDrg2KiBV1)
policy.SetConsensusMinerMinPower(abi.NewStoragePower(2048))
policy.SetMinVerifiedDealSize(abi.NewStoragePower(256))
2020-06-01 18:43:51 +00:00
BuildType |= Build2k
2020-04-17 15:58:20 +00:00
}
2020-09-14 04:25:54 +00:00
const BlockDelaySecs = uint64(4)
2020-04-17 15:58:20 +00:00
2020-08-07 15:51:35 +00:00
const PropagationDelaySecs = uint64(1)
2020-04-17 15:58:20 +00:00
// SlashablePowerDelay is the number of epochs after ElectionPeriodStart, after
// which the miner is slashed
//
// Epochs
const SlashablePowerDelay = 20
// Epochs
const InteractivePoRepConfidence = 6
2020-11-11 04:20:31 +00:00
const BootstrapPeerThreshold = 1