diff --git a/internal/frostfs/services/tree_client_grpc_signature.go b/internal/frostfs/services/tree_client_grpc_signature.go index 9dd38f9..3e79a28 100644 --- a/internal/frostfs/services/tree_client_grpc_signature.go +++ b/internal/frostfs/services/tree_client_grpc_signature.go @@ -7,8 +7,6 @@ import ( ) func (c *ServiceClientGRPC) signData(buf []byte, f func(key, sign []byte)) error { - // crypto package should not be used outside of API libraries (see neofs-node#491). - // For now tree service does not include into SDK Client nor SDK Pool, so there is no choice. // When SDK library adopts Tree service client, this should be dropped. sign, err := crypto.Sign(&c.key.PrivateKey, buf) if err != nil {