Skip to content

Commit

Permalink
Removed unused var
Browse files Browse the repository at this point in the history
  • Loading branch information
birdychang committed Nov 7, 2022
1 parent 2dfd160 commit 3282c75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/actorstate/miner/sector_events.go
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ type SectorStates struct {
// LoadSectorState loads all sectors from a miners partitions and returns a SectorStates structure containing individual
// bitfields for all active, live, faulty and recovering sector.
func LoadSectorState(ctx context.Context, state miner.State) (*SectorStates, error) {
ctx, span := otel.Tracer("").Start(ctx, "LoadSectorState")
_, span := otel.Tracer("").Start(ctx, "LoadSectorState")
defer span.End()

sectorStates := &SectorStates{}
Expand Down

0 comments on commit 3282c75

Please sign in to comment.