From 7992c7aaede2a655eb1b4eaeeb030ff4ca09d5f2 Mon Sep 17 00:00:00 2001 From: Pascal Precht <445106+PascalPrecht@users.noreply.github.com> Date: Tue, 21 Sep 2021 07:02:24 +0200 Subject: [PATCH] 11/WAKU-RELAY: fix signature policy location hashes (#461) These don't work as the hashes are case sensitive. --- content/docs/rfcs/11/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/content/docs/rfcs/11/README.md b/content/docs/rfcs/11/README.md index 62ed1d40..cb097cab 100644 --- a/content/docs/rfcs/11/README.md +++ b/content/docs/rfcs/11/README.md @@ -95,18 +95,18 @@ The [`TopicDescriptor`](https://github.com/libp2p/specs/blob/master/pubsub/READM The `Message` protobuf defines the format in which content is relayed between peers. `11/WAKU2-RELAY` specifies the following usage requirements for each field: -- The `from` field MUST NOT be used, following the [`StrictNoSign` signature policy](#Signature-Policy). +- The `from` field MUST NOT be used, following the [`StrictNoSign` signature policy](#signature-policy). - The `data` field MUST be filled out with a `WakuMessage`. See [`14/WAKU2-MESSAGE`](/spec/14) for more details. -- The `seqno` field MUST NOT be used, following the [`StrictNoSign` signature policy](#Signature-Policy). +- The `seqno` field MUST NOT be used, following the [`StrictNoSign` signature policy](#signature-policy). - The `topicIDs` field MUST contain the topics that a message is being published on. -- The `signature` field MUST NOT be used, following the [`StrictNoSign` signature policy](#Signature-Policy). +- The `signature` field MUST NOT be used, following the [`StrictNoSign` signature policy](#signature-policy). -- The `key` field MUST NOT be used, following the [`StrictNoSign` signature policy](#Signature-Policy). +- The `key` field MUST NOT be used, following the [`StrictNoSign` signature policy](#signature-solicy). ## SubOpts fields