Merge pull request #8370 from rjan90/ux/sectors-snap-up

fix:snapup: Rename error message
This commit is contained in:
Łukasz Magiera 2022-03-25 14:33:20 -04:00 committed by GitHub
commit 4e2d7fe1db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,7 +16,7 @@ func (m *Sealing) MarkForSnapUpgrade(ctx context.Context, id abi.SectorNumber) e
}
if si.State != Proving {
return xerrors.Errorf("can't mark sectors not in the 'Proving' state for upgrade")
return xerrors.Errorf("unable to snap-up sectors not in the 'Proving' state")
}
if si.hasDeals() {