diff --git a/pkg/morph/client/container/wrapper/eacl.go b/pkg/morph/client/container/wrapper/eacl.go index e63702eb7..36f9b5887 100644 --- a/pkg/morph/client/container/wrapper/eacl.go +++ b/pkg/morph/client/container/wrapper/eacl.go @@ -81,9 +81,9 @@ func (w *Wrapper) PutEACLBinary(table, key, sig []byte) error { } args := client.SetEACLArgs{} - args.SetSignature(table) + args.SetSignature(sig) args.SetPublicKey(key) - args.SetEACL(sig) + args.SetEACL(table) return w.client.SetEACL(args) }