fix missing object condition; short-circuit walk

This commit is contained in:
vyzo 2021-07-25 13:34:18 +03:00
parent 0fd8fc24e1
commit 18caefc4a1

View File

@ -76,7 +76,7 @@ func (s *SplitStore) doWarmup(curTs *types.TipSet) error {
if err != nil {
if err == bstore.ErrNotFound {
missing++
return nil
return errStopWalk
}
return err
}