From 83f78a31fef2eb0c013392a9c31713eeab76f7fa Mon Sep 17 00:00:00 2001 From: Abhay Date: Wed, 23 Oct 2024 08:57:01 +0530 Subject: [PATCH] Remove Ranked Choice Polls --- 88.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/88.md b/88.md index ba683e6..08f5c41 100644 --- a/88.md +++ b/88.md @@ -18,7 +18,7 @@ Major tags in the poll event are: - **option**: The option tags contain an OptionId(any alphanumeric) field, followed by an option label field. - **relay**: One or multiple tags that the poll is expecting respondents to respond on. -- **polltype**: can be "singlechoice", "multiplechoice", or "rankedchoice". Polls that do not have a polltype should be considered a "singlechoice" poll. +- **polltype**: can be "singlechoice" or "multiplechoice". Polls that do not have a polltype should be considered a "singlechoice" poll. - **endsAt**: signifying at which unix timestamp the poll is meant to end. Example Event @@ -74,7 +74,6 @@ The polltype setting dictates how multiple response tags are handled in the `kin - **polltype: singlechoice**: The first response tag is to be considered the actual response. - **polltype: multiplechoice**: The first response tag pointing to each id is considered the actual response, without considering the order of the response tags. -- **polltype: rankedchoice**: The first response tag pointing to each id is the considered the actual response, while also taking into account the order of the response tags. ### Counting Results @@ -123,7 +122,7 @@ const oneVotePerPubkey = (events: Event[]) => { ### Relays -It is advisable for poll authors to use relays that do not allow backdated events and do not honor kind:5 (delete) requests for vote events to maintain the integrity of poll results after the poll has ended. +It is advisable for poll authors to use relays that do not allow backdated events and do not honor kind:5 (delete) requests for vote events in order to maintain the integrity of poll results after the poll has ended. ### Curation