097d82535d
* wip * commit with fewer error messages * reduce headlag from 3 to 1 * fixes for params * add composition for local:docker * revert drand-halt plan * initial monitor of miner power and chain epochs * revert params to be same as filecoin mainnet * increase timeout for drand resuming from 30sec to 120sec. * increase log level * upgrade lotus to v0.6.1 * upgrade drand to v1.1.1 * increase prepare node timeout from 1 min to 3 min * upgrade drand to master. increase timeouts for prepare drand node * nil the stmgr.ForksAtHeight map * modify starting/stopping of drand within testplan * increase drand outage to 45min. so that we miss windows * upgrade proof parameters in docker images * revert in-complete changes * use correct runtime debug image
52 lines
1.7 KiB
Go
52 lines
1.7 KiB
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/filecoin-project/lotus/build"
|
|
"github.com/filecoin-project/lotus/chain/stmgr"
|
|
|
|
"github.com/filecoin-project/go-state-types/abi"
|
|
"github.com/filecoin-project/go-state-types/big"
|
|
"github.com/filecoin-project/specs-actors/actors/builtin/miner"
|
|
"github.com/filecoin-project/specs-actors/actors/builtin/power"
|
|
"github.com/filecoin-project/specs-actors/actors/builtin/verifreg"
|
|
|
|
"github.com/ipfs/go-log/v2"
|
|
)
|
|
|
|
func init() {
|
|
build.BlockDelaySecs = 2
|
|
build.PropagationDelaySecs = 1
|
|
|
|
_ = log.SetLogLevel("*", "WARN")
|
|
_ = log.SetLogLevel("dht/RtRefreshManager", "ERROR") // noisy
|
|
_ = log.SetLogLevel("bitswap", "ERROR") // noisy
|
|
|
|
_ = os.Setenv("BELLMAN_NO_GPU", "1")
|
|
|
|
build.InsecurePoStValidation = true
|
|
build.DisableBuiltinAssets = true
|
|
|
|
// MessageConfidence is the amount of tipsets we wait after a message is
|
|
// mined, e.g. payment channel creation, to be considered committed.
|
|
build.MessageConfidence = 1
|
|
|
|
// The period over which all a miner's active sectors will be challenged.
|
|
miner.WPoStProvingPeriod = abi.ChainEpoch(240) // instead of 24 hours
|
|
|
|
// The duration of a deadline's challenge window, the period before a deadline when the challenge is available.
|
|
miner.WPoStChallengeWindow = abi.ChainEpoch(5) // instead of 30 minutes (still 48 per day)
|
|
|
|
// Number of epochs between publishing the precommit and when the challenge for interactive PoRep is drawn
|
|
// used to ensure it is not predictable by miner.
|
|
miner.PreCommitChallengeDelay = abi.ChainEpoch(10)
|
|
|
|
power.ConsensusMinerMinPower = big.NewInt(2048)
|
|
miner.SupportedProofTypes = map[abi.RegisteredSealProof]struct{}{
|
|
abi.RegisteredSealProof_StackedDrg2KiBV1: {},
|
|
}
|
|
verifreg.MinVerifiedDealSize = big.NewInt(256)
|
|
stmgr.ForksAtHeight = nil
|
|
}
|