sealing: Add a guard check to getExpirationCached when sector not found

This commit is contained in:
Łukasz Magiera 2022-12-09 09:56:11 +01:00 committed by Aayush
parent 887f00856e
commit 1a5e38ecf9

View File

@ -443,6 +443,9 @@ func (m *Sealing) updateInput(ctx context.Context, sp abi.RegisteredSealProof) e
if err != nil { if err != nil {
return 0, big.Zero(), err return 0, big.Zero(), err
} }
if onChainInfo == nil {
return 0, big.Zero(), xerrors.Errorf("sector info for sector %d not found", sn)
}
memo[sn] = struct { memo[sn] = struct {
e abi.ChainEpoch e abi.ChainEpoch
p abi.TokenAmount p abi.TokenAmount