From 8e5b44d46ab87c3a41b4f031b6a9df4fd25a29d6 Mon Sep 17 00:00:00 2001 From: Jasmina Malicevic Date: Wed, 2 Feb 2022 11:17:47 +0100 Subject: [PATCH] =?UTF-8?q?p2p/message:=20Changed=20evidence=20message=20t?= =?UTF-8?q?o=20contain=20evidence,=20not=20a=20list=E2=80=A6=20(#394)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * p2p/message: Changed evidence message to contain evidence, not a list of evidence * Update spec/p2p/messages/evidence.md Co-authored-by: Callum Waters Co-authored-by: Callum Waters --- spec/p2p/messages/evidence.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spec/p2p/messages/evidence.md b/spec/p2p/messages/evidence.md index 34fc40a91..84dfe258a 100644 --- a/spec/p2p/messages/evidence.md +++ b/spec/p2p/messages/evidence.md @@ -14,10 +14,10 @@ Evidence has one channel. The channel identifier is listed below. ## Message Types -### EvidenceList +### Evidence -EvidenceList consists of a list of verified evidence. This evidence will already have been propagated throughout the network. EvidenceList is used in two places, as a p2p message and within the block [block](../../core/data_structures.md#block) as well. +Verified evidence that has already been propagated throughout the network. This evidence will appear within the EvidenceList struct of a [block](../../core/data_structures.md#block) as well. | Name | Type | Description | Field Number | |----------|-------------------------------------------------------------|------------------------|--------------| -| evidence | repeated [Evidence](../../core/data_structures.md#evidence) | List of valid evidence | 1 | +| evidence | [Evidence](../../core/data_structures.md#evidence) | Valid evidence | 1 |