Merge pull request #5010 from filecoin-project/fix/inspec-not-found

Fix actor not found in chain inspect-usage
This commit is contained in:
Jakub Sztandera 2020-11-25 20:57:26 +01:00 committed by GitHub
commit d15d9b0fb9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -466,6 +466,9 @@ var chainInspectUsage = &cli.Command{
code, err := lookupActorCode(m.Message.To)
if err != nil {
if strings.Contains(err.Error(), types.ErrActorNotFound.Error()) {
continue
}
return err
}