[#1418] shard: Do not use pointers as parameters

Signed-off-by: Pavel Karpy <carpawell@nspcc.ru>
This commit is contained in:
Pavel Karpy 2022-05-20 21:08:59 +03:00 committed by Pavel Karpy
parent 6d4d920bad
commit 5f57db6bf8
8 changed files with 10 additions and 10 deletions

View file

@ -27,7 +27,7 @@ func (p *ExistsPrm) WithAddress(addr oid.Address) *ExistsPrm {
}
// Exists returns the fact that the object is in the shard.
func (p *ExistsRes) Exists() bool {
func (p ExistsRes) Exists() bool {
return p.ex
}