[#259] v2/signature: Support NetworkInfo request/response messages

Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
Leonard Lyubich 2021-02-19 10:16:22 +03:00 committed by Alex Vanin
parent 8529aa2a93
commit e2b0887be9

View file

@ -370,5 +370,9 @@ func serviceMessageBody(req interface{}) stableMarshaler {
return v.GetBody()
case *netmap.LocalNodeInfoResponse:
return v.GetBody()
case *netmap.NetworkInfoRequest:
return v.GetBody()
case *netmap.NetworkInfoResponse:
return v.GetBody()
}
}