lotus/extern/storage-sealing/sealiface/config.go
2021-01-21 17:40:50 +01:00

21 lines
381 B
Go

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
WaitDealsDelay time.Duration
TargetWaitDealsSectors uint64
}