[#265] v2/signature: Support SendIntermediateResult request and response

Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
Leonard Lyubich 2021-04-01 17:54:16 +03:00 committed by Leonard Lyubich
parent ccae5a40ba
commit 35567afd11

View file

@ -381,5 +381,9 @@ func serviceMessageBody(req interface{}) stableMarshaler {
return v.GetBody()
case *reputation.SendLocalTrustResponse:
return v.GetBody()
case *reputation.SendIntermediateResultRequest:
return v.GetBody()
case *reputation.SendIntermediateResultResponse:
return v.GetBody()
}
}