From 05838b2c656c1cb056eb62a6017288837f7ef266 Mon Sep 17 00:00:00 2001 From: Max Inden <mail@max-inden.de> Date: Mon, 20 Jan 2020 17:25:56 +0100 Subject: [PATCH] client/finality-grandpa/communication: Add doc comment for PeerReport (#4684) --- substrate/client/finality-grandpa/src/communication/gossip.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/substrate/client/finality-grandpa/src/communication/gossip.rs b/substrate/client/finality-grandpa/src/communication/gossip.rs index ec74393d80f..7b21c1d0797 100644 --- a/substrate/client/finality-grandpa/src/communication/gossip.rs +++ b/substrate/client/finality-grandpa/src/communication/gossip.rs @@ -1445,6 +1445,7 @@ impl<Block: BlockT> sc_network_gossip::Validator<Block> for GossipValidator<Bloc } } +/// Report specifying a reputation change for a given peer. pub(super) struct PeerReport { pub who: PeerId, pub cost_benefit: ReputationChange, -- GitLab