Remove "could not"/"can't"/"failed to" from error messages #1568
1 changed files with 1 additions and 1 deletions
|
@ -1504,7 +1504,7 @@ func (t *boltForest) TreeListTrees(ctx context.Context, prm TreeListTreesPrm) (*
|
||||||
|
|
||||||
var contID cidSDK.ID
|
var contID cidSDK.ID
|
||||||
if err := contID.Decode(k[:32]); err != nil {
|
if err := contID.Decode(k[:32]); err != nil {
|
||||||
return fmt.Errorf("decode containerID: %w", err)
|
return fmt.Errorf("decode container ID: %w", err)
|
||||||
}
|
}
|
||||||
res.Items = append(res.Items, ContainerIDTreeID{
|
res.Items = append(res.Items, ContainerIDTreeID{
|
||||||
CID: contID,
|
CID: contID,
|
||||||
|
|
Loading…
Reference in a new issue