Merge pull request #5010 from filecoin-project/fix/inspec-not-found
Fix actor not found in chain inspect-usage
This commit is contained in:
commit
d15d9b0fb9
@ -466,6 +466,9 @@ var chainInspectUsage = &cli.Command{
|
|||||||
|
|
||||||
code, err := lookupActorCode(m.Message.To)
|
code, err := lookupActorCode(m.Message.To)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
if strings.Contains(err.Error(), types.ErrActorNotFound.Error()) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user