23 lines
629 B
Go
23 lines
629 B
Go
package advmgr
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/filecoin-project/go-sectorbuilder"
|
|
"github.com/filecoin-project/specs-actors/actors/abi"
|
|
"golang.org/x/xerrors"
|
|
)
|
|
|
|
type readonlyProvider struct {
|
|
miner abi.ActorID
|
|
stor *storage
|
|
}
|
|
|
|
func (l *readonlyProvider) AcquireSector(ctx context.Context, id abi.SectorNumber, existing sectorbuilder.SectorFileType, allocate sectorbuilder.SectorFileType, sealing bool) (sectorbuilder.SectorPaths, func(), error) {
|
|
if allocate != 0 {
|
|
return sectorbuilder.SectorPaths{}, nil, xerrors.New("read-only storage")
|
|
}
|
|
|
|
return l.stor.acquireSector(l.miner, id, existing, allocate, sealing)
|
|
}
|