[#149] reputation: Change SendIntermediateResultRequest.Body

Add `epoch` field to the `SendIntermediateResultRequest.Body`
message.

Signed-off-by: Pavel Karpy <carpawell@nspcc.ru>
This commit is contained in:
Pavel Karpy 2021-04-21 18:57:30 +03:00 committed by Alex Vanin
parent 028f9e8c1a
commit b50b951dd0

View file

@ -68,11 +68,14 @@ message SendLocalTrustResponse {
message SendIntermediateResultRequest {
// Request body structure.
message Body {
// The number of the epoch in which the iteration was executed.
uint64 epoch = 1;
// Sequence number of the iteration.
uint32 iteration = 1;
uint32 iteration = 2;
// Current global trust value computed at the specified iteration.
PeerToPeerTrust trust = 2;
PeerToPeerTrust trust = 3;
}
// Body of the request message.