lotus/extern/storage-sealing/sealiface/config.go

25 lines
447 B
Go
Raw Normal View History

2020-08-18 16:27:18 +00:00
package sealiface
import "time"
// this has to be in a separate package to not make lotus API depend on filecoin-ffi
type Config struct {
// 0 = no limit
MaxWaitDealsSectors uint64
// includes failed, 0 = no limit
MaxSealingSectors uint64
// includes failed, 0 = no limit
MaxSealingSectorsForDeals uint64
2020-08-18 16:27:18 +00:00
WaitDealsDelay time.Duration
AlwaysKeepUnsealedCopy bool
2021-03-10 15:16:44 +00:00
AggregateCommits bool
MinCommitBatch int
MaxCommitBatch int
2020-08-18 16:27:18 +00:00
}