Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
vyzo committed Jun 22, 2022
1 parent aa85a22 commit 8c0675d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chain/vm/fvm.go
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ func NewDebugFVM(ctx context.Context, opts *VMOpts) (*FVM, error) {
for _, e := range mf.Entries {
from, ok := fromMap[e.Name]
if !ok {
return nil, xerrors.Errorf("error mapping %d for debug redirect: %w", e.Name, err)
return nil, xerrors.Errorf("error mapping %s for debug redirect: %w", e.Name, err)
}
actorRedirect[from] = e.Code
}
Expand Down

0 comments on commit 8c0675d

Please sign in to comment.