From 028f9e8c1aaa966cc34efc2688d880efc1e5b925 Mon Sep 17 00:00:00 2001 From: Leonard Lyubich Date: Fri, 9 Apr 2021 10:53:45 +0300 Subject: [PATCH] [#143] reputation: Change SendIntermediateResultRequest.Body.trust type Change `trust` field type of `SendIntermediateResultRequest.Body` message to `PeerToPeerTrust` since `SendIntermediateResult` call transfers the node's directed trust to the node. Signed-off-by: Leonard Lyubich --- reputation/service.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reputation/service.proto b/reputation/service.proto index 45363ae..563ed39 100644 --- a/reputation/service.proto +++ b/reputation/service.proto @@ -72,7 +72,7 @@ message SendIntermediateResultRequest { uint32 iteration = 1; // Current global trust value computed at the specified iteration. - Trust trust = 2; + PeerToPeerTrust trust = 2; } // Body of the request message.