Handle MissingStateError too

This commit is contained in:
Neil Alexander 2022-08-17 16:41:13 +01:00
parent 9f8a43d9a7
commit 17378d870f
No known key found for this signature in database
GPG key ID: A02A2019A2BB0944

View file

@ -95,6 +95,9 @@ func (r *Queryer) QueryStateAfterEvents(
if _, ok := err.(types.MissingEventError); ok {
return nil
}
if _, ok := err.(types.MissingStateError); ok {
return nil
}
return err
}