sealing: fix lint/tests

This commit is contained in:
Łukasz Magiera 2022-08-09 13:43:08 +02:00
parent 71dacb5af8
commit 77208728ad
3 changed files with 5 additions and 8 deletions

View File

@ -222,7 +222,7 @@ func PreflightChecks(mctx helpers.MetricsCtx, lc fx.Lifecycle, api v1api.FullNod
} }
if !has { if !has {
return errors.New("key for worker not found in local wallet") return xerrors.New("key for worker not found in local wallet")
} }
log.Infof("starting up miner %s, worker addr %s", maddr, workerKey) log.Infof("starting up miner %s, worker addr %s", maddr, workerKey)

View File

@ -18,6 +18,7 @@ import (
"github.com/filecoin-project/lotus/chain/actors/builtin" "github.com/filecoin-project/lotus/chain/actors/builtin"
"github.com/filecoin-project/lotus/chain/actors/policy" "github.com/filecoin-project/lotus/chain/actors/policy"
"github.com/filecoin-project/lotus/chain/types" "github.com/filecoin-project/lotus/chain/types"
"github.com/filecoin-project/lotus/node/modules/dtypes"
pipeline "github.com/filecoin-project/lotus/storage/pipeline" pipeline "github.com/filecoin-project/lotus/storage/pipeline"
"github.com/filecoin-project/lotus/storage/pipeline/sealiface" "github.com/filecoin-project/lotus/storage/pipeline/sealiface"
) )
@ -30,7 +31,7 @@ type fakeConfigStub struct {
CCSectorLifetime time.Duration CCSectorLifetime time.Duration
} }
func fakeConfigGetter(stub *fakeConfigStub) pipeline.GetSealingConfigFunc { func fakeConfigGetter(stub *fakeConfigStub) dtypes.GetSealingConfigFunc {
return func() (sealiface.Config, error) { return func() (sealiface.Config, error) {
if stub == nil { if stub == nil {
return sealiface.Config{}, nil return sealiface.Config{}, nil

View File

@ -218,14 +218,10 @@ func New(mctx context.Context, api SealingAPI, fc config.MinerFeeConfig, events
return s return s
} }
func (m *Sealing) Run(ctx context.Context) error { func (m *Sealing) Run(ctx context.Context) {
if err := m.restartSectors(ctx); err != nil { if err := m.restartSectors(ctx); err != nil {
log.Errorf("%+v", err) log.Errorf("failed load sector states: %+v", err)
return xerrors.Errorf("failed load sector states: %w", err)
} }
return nil
} }
func (m *Sealing) Stop(ctx context.Context) error { func (m *Sealing) Stop(ctx context.Context) error {