[#168] pool: Adopt replacement of pointer slices with struct slices

Signed-off-by: Alex Vanin <alexey@nspcc.ru>
remotes/1719655588499283104/tree-service
Alex Vanin 2022-03-11 12:18:13 +03:00 committed by Alex Vanin
parent 9c5d3d9dfa
commit b91e25f782
1 changed files with 1 additions and 1 deletions

View File

@ -1110,7 +1110,7 @@ func (p *Pool) GetContainer(ctx context.Context, cid *cid.ID, opts ...CallOption
return res.Container(), nil
}
func (p *Pool) ListContainers(ctx context.Context, ownerID *owner.ID, opts ...CallOption) ([]*cid.ID, error) {
func (p *Pool) ListContainers(ctx context.Context, ownerID *owner.ID, opts ...CallOption) ([]cid.ID, error) {
cfg := cfgFromOpts(opts...)
cp, err := p.conn(ctx, cfg)
if err != nil {