From 6d9bb2e0bf7dcc68ee4f6f4faf40a12fc3c65765 Mon Sep 17 00:00:00 2001 From: wersfeds Date: Wed, 10 Apr 2024 22:01:29 +0800 Subject: [PATCH] chore: fix typos (#11848) --- chain/consensus/filcns/upgrades.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chain/consensus/filcns/upgrades.go b/chain/consensus/filcns/upgrades.go index 3b7afa286..eaa4f3b20 100644 --- a/chain/consensus/filcns/upgrades.go +++ b/chain/consensus/filcns/upgrades.go @@ -1893,7 +1893,7 @@ func UpgradeActorsV12(ctx context.Context, sm *stmgr.StateManager, cache stmgr.M } newRoot, err := upgradeActorsV12Common(ctx, sm, cache, root, epoch, ts, config) if err != nil { - return cid.Undef, xerrors.Errorf("migrating actors v11 state: %w", err) + return cid.Undef, xerrors.Errorf("migrating actors v12 state: %w", err) } return newRoot, nil } @@ -2210,7 +2210,7 @@ func UpgradeActorsV13(ctx context.Context, sm *stmgr.StateManager, cache stmgr.M } newRoot, err := upgradeActorsV13Common(ctx, sm, cache, root, epoch, ts, config) if err != nil { - return cid.Undef, xerrors.Errorf("migrating actors v11 state: %w", err) + return cid.Undef, xerrors.Errorf("migrating actors v13 state: %w", err) } return newRoot, nil }