Skip to content

Commit

Permalink
chore: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
simlecode committed Sep 25, 2023
1 parent ae99a46 commit afaf7ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/submodule/chain/miner_api.go
Original file line number Diff line number Diff line change
Expand Up @@ -638,7 +638,7 @@ func (msa *minerStateAPI) stateComputeDataCIDv3(ctx context.Context, maddr addre
return cid.Undef, fmt.Errorf("failed to unmarshal CBOR to VerifyDealsForActivationReturn: %w", err)
}
if len(cr.UnsealedCIDs) != 1 {
return cid.Undef, fmt.Errorf("Sectors output must have 1 entry")
return cid.Undef, fmt.Errorf("sectors output must have 1 entry")
}
ucid := cr.UnsealedCIDs[0]
if ucid == nil {
Expand Down

0 comments on commit afaf7ff

Please sign in to comment.