23 lines
435 B
Go
23 lines
435 B
Go
package storiface
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
|
|
"github.com/ipfs/go-cid"
|
|
|
|
"github.com/filecoin-project/go-state-types/abi"
|
|
)
|
|
|
|
var ErrSectorNotFound = errors.New("sector not found")
|
|
|
|
type UnpaddedByteIndex uint64
|
|
|
|
func (i UnpaddedByteIndex) Padded() PaddedByteIndex {
|
|
return PaddedByteIndex(abi.UnpaddedPieceSize(i).Padded())
|
|
}
|
|
|
|
type PaddedByteIndex uint64
|
|
|
|
type RGetter func(ctx context.Context, id abi.SectorID) (cid.Cid, error)
|