lp cfg set existing defaults

This commit is contained in:
Andrew Jackson (Ajax) 2023-09-28 10:47:40 -05:00
parent 86ec8bbf18
commit a9d472a40e
2 changed files with 8 additions and 3 deletions

View File

@ -82,7 +82,7 @@
# 'lotus-miner proving compute window-post 0'
#
# type: int
#ParallelCheckLimit = 0
#ParallelCheckLimit = 32
# Maximum amount of time a proving pre-check can take for a sector. If the check times out the sector will be skipped
#
@ -92,7 +92,7 @@
# blocked (e.g. in case of disconnected NFS mount)
#
# type: Duration
#SingleCheckTimeout = "0s"
#SingleCheckTimeout = "10m0s"
# Maximum amount of time a proving pre-check can take for an entire partition. If the check times out, sectors in
# the partition which didn't get checked on time will be skipped
@ -103,7 +103,7 @@
# blocked or slow
#
# type: Duration
#PartitionCheckTimeout = "0s"
#PartitionCheckTimeout = "20m0s"
# Disable Window PoSt computation on the lotus-miner process even if no window PoSt workers are present.
#

View File

@ -374,6 +374,11 @@ func DefaultLotusProvider() *LotusProviderConfig {
CommitControl: []string{},
TerminateControl: []string{},
},
Proving: ProvingConfig{
ParallelCheckLimit: 32,
PartitionCheckTimeout: Duration(20 * time.Minute),
SingleCheckTimeout: Duration(10 * time.Minute),
},
/*
HarmonyDB: HarmonyDB{
Hosts: []string{"127.0.0.1"},