sealing: Add a guard check to getExpirationCached when sector not found
This commit is contained in:
parent
887f00856e
commit
1a5e38ecf9
@ -443,6 +443,9 @@ func (m *Sealing) updateInput(ctx context.Context, sp abi.RegisteredSealProof) e
|
||||
if err != nil {
|
||||
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 {
|
||||
e abi.ChainEpoch
|
||||
p abi.TokenAmount
|
||||
|
Loading…
Reference in New Issue
Block a user