diff --git a/v2/signature/sign.go b/v2/signature/sign.go index f006bfb..eb35253 100644 --- a/v2/signature/sign.go +++ b/v2/signature/sign.go @@ -10,6 +10,7 @@ import ( "github.com/nspcc-dev/neofs-api-go/v2/netmap" "github.com/nspcc-dev/neofs-api-go/v2/object" "github.com/nspcc-dev/neofs-api-go/v2/refs" + "github.com/nspcc-dev/neofs-api-go/v2/reputation" "github.com/nspcc-dev/neofs-api-go/v2/session" "github.com/pkg/errors" ) @@ -374,5 +375,11 @@ func serviceMessageBody(req interface{}) stableMarshaler { return v.GetBody() case *netmap.NetworkInfoResponse: return v.GetBody() + + /* Reputation */ + case *reputation.SendLocalTrustRequest: + return v.GetBody() + case *reputation.SendLocalTrustResponse: + return v.GetBody() } }