add nil check in tipset change handler
This commit is contained in:
parent
c73d597d87
commit
43e1b57c3f
@ -379,6 +379,11 @@ func (n *ProviderNodeAdapter) OnDealExpiredOrSlashed(ctx context.Context, dealID
|
|||||||
|
|
||||||
// Called immediately to check if the deal has already expired or been slashed
|
// Called immediately to check if the deal has already expired or been slashed
|
||||||
checkFunc := func(ts *types.TipSet) (done bool, more bool, err error) {
|
checkFunc := func(ts *types.TipSet) (done bool, more bool, err error) {
|
||||||
|
if ts == nil {
|
||||||
|
// keep listening for events
|
||||||
|
return false, true, nil
|
||||||
|
}
|
||||||
|
|
||||||
// Check if the deal has already expired
|
// Check if the deal has already expired
|
||||||
if sd.Proposal.EndEpoch <= ts.Height() {
|
if sd.Proposal.EndEpoch <= ts.Height() {
|
||||||
onDealExpired(nil)
|
onDealExpired(nil)
|
||||||
|
Loading…
Reference in New Issue
Block a user