go fmt
This commit is contained in:
parent
793d332002
commit
6fe92ff13c
@ -193,7 +193,7 @@ func (l *LocalWorker) UnsealPiece(ctx context.Context, sector abi.SectorID, inde
|
||||
return xerrors.Errorf("unsealing sector: %w", err)
|
||||
}
|
||||
|
||||
if err := l.storage.RemoveCopies(ctx, sector, stores.FTSealed | stores.FTCache); err != nil {
|
||||
if err := l.storage.RemoveCopies(ctx, sector, stores.FTSealed|stores.FTCache); err != nil {
|
||||
return xerrors.Errorf("removing source data: %w", err)
|
||||
}
|
||||
|
||||
|
@ -10,12 +10,14 @@ import (
|
||||
)
|
||||
|
||||
type PathType bool
|
||||
|
||||
const (
|
||||
PathStorage = false
|
||||
PathSealing = true
|
||||
)
|
||||
|
||||
type AcquireMode string
|
||||
|
||||
const (
|
||||
AcquireMove = "move"
|
||||
AcquireCopy = "copy"
|
||||
|
@ -63,7 +63,6 @@ func (t *TestingLocalStorage) init(subpath string) error {
|
||||
return nil
|
||||
}
|
||||
|
||||
|
||||
var _ LocalStorage = &TestingLocalStorage{}
|
||||
|
||||
func TestLocalStorage(t *testing.T) {
|
||||
|
Loading…
Reference in New Issue
Block a user