lotus/storage/sealmgr/stores/interface.go
2020-03-11 08:22:21 +01:00

12 lines
323 B
Go

package stores
import (
"github.com/filecoin-project/specs-actors/actors/abi"
"github.com/filecoin-project/go-sectorbuilder"
)
type Store interface {
AcquireSector(s abi.SectorID, existing sectorbuilder.SectorFileType, allocate sectorbuilder.SectorFileType, sealing bool) (sectorbuilder.SectorPaths, func(), error)
}