From 59ef2fe1b8285ca1e5de51c077d1d756cf145bc0 Mon Sep 17 00:00:00 2001 From: zenground0 Date: Tue, 1 Mar 2022 11:46:36 -0700 Subject: [PATCH] Remove unused fields from sealing --- extern/storage-sealing/sealing.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/extern/storage-sealing/sealing.go b/extern/storage-sealing/sealing.go index 81f6b38e9..5aeeda7be 100644 --- a/extern/storage-sealing/sealing.go +++ b/extern/storage-sealing/sealing.go @@ -106,9 +106,6 @@ type Sealing struct { assignedPieces map[abi.SectorID][]cid.Cid creating *abi.SectorNumber // used to prevent a race where we could create a new sector more than once - upgradeLk sync.Mutex - toUpgrade map[abi.SectorNumber]struct{} - notifee SectorStateNotifee addrSel AddrSel @@ -168,7 +165,6 @@ func New(mctx context.Context, api SealingAPI, fc config.MinerFeeConfig, events sectorTimers: map[abi.SectorID]*time.Timer{}, pendingPieces: map[cid.Cid]*pendingPiece{}, assignedPieces: map[abi.SectorID][]cid.Cid{}, - toUpgrade: map[abi.SectorNumber]struct{}{}, notifee: notifee, addrSel: as,