Skip to content

Commit f0867a9

Browse files
authored
Merge pull request #8629 from filecoin-project/arajasek-patch-2
fix: upgrades: correct error message for v16 migration
2 parents 1814187 + fbcd4c7 commit f0867a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

chain/consensus/filcns/upgrades.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1334,7 +1334,7 @@ func UpgradeActorsV8(ctx context.Context, sm *stmgr.StateManager, cache stmgr.Mi
13341334

13351335
newRoot, err := upgradeActorsV8Common(ctx, sm, cache, root, epoch, ts, config)
13361336
if err != nil {
1337-
return cid.Undef, xerrors.Errorf("migrating actors v6 state: %w", err)
1337+
return cid.Undef, xerrors.Errorf("migrating actors v7 state: %w", err)
13381338
}
13391339

13401340
return newRoot, nil

0 commit comments

Comments
 (0)