diff --git a/internal/neofs/neofs.go b/internal/neofs/neofs.go index 17200ac0..819eb4b6 100644 --- a/internal/neofs/neofs.go +++ b/internal/neofs/neofs.go @@ -163,6 +163,10 @@ func (x *NeoFS) CreateContainer(ctx context.Context, prm layer.PrmContainerCreat } cnr.SetCreationTime(creationTime) + if !x.IsHomomorphicHashingEnabled() { + cnr.DisableHomomorphicHashing() + } + if prm.Name != "" { var d container.Domain d.SetName(prm.Name)