lotus/extern/storage-sealing/sealiface/config.go
Łukasz Magiera baf91f08a1 Unbreak tests
2020-08-18 18:27:18 +02:00

17 lines
281 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
WaitDealsDelay time.Duration
}