Skip to content

Commit

Permalink
fix error message
Browse files Browse the repository at this point in the history
  • Loading branch information
Stebalien committed Jan 27, 2021
1 parent 18868f0 commit 55c244f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chain/stmgr/forks.go
Original file line number Diff line number Diff line change
Expand Up @@ -848,7 +848,7 @@ func UpgradeActorsV3(ctx context.Context, sm *StateManager, cache MigrationCache
config := nv10.Config{MaxWorkers: 1}
newRoot, err := upgradeActorsV3Common(ctx, sm, cache, root, epoch, ts, config)
if err != nil {
return cid.Undef, xerrors.Errorf("failed to persist new state root: %w", err)
return cid.Undef, xerrors.Errorf("migrating actors v3 state: %w", err)
}

// perform some basic sanity checks to make sure everything still works.
Expand Down

0 comments on commit 55c244f

Please sign in to comment.