From 9a42ac8b5caaebc4ca49c8b9de99af6e6eff5036 Mon Sep 17 00:00:00 2001 From: nini-faroux Date: Tue, 2 Aug 2022 10:16:30 +0100 Subject: [PATCH] Update ProposalRedeemer comment --- agora/Agora/Proposal.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/agora/Agora/Proposal.hs b/agora/Agora/Proposal.hs index cf7bdda..2c002ed 100644 --- a/agora/Agora/Proposal.hs +++ b/agora/Agora/Proposal.hs @@ -342,12 +342,12 @@ data ProposalRedeemer -- -- === @'Draft' -> 'VotingReady'@: -- - -- 1. The sum of all of the cosigner's GT is larger than the 'startVoting' field of 'ProposalThresholds'. + -- 1. The sum of all of the cosigner's GT is larger than the 'vote' field of 'ProposalThresholds'. -- 2. The proposal's current time ensures 'isDraftPeriod'. -- -- === @'VotingReady' -> 'Locked'@: -- - -- 1. The sum of all votes is larger than 'countVoting'. + -- 1. The sum of all votes is larger than 'execute'. -- 2. The winning 'ResultTag' has more votes than all other 'ResultTag's. -- 3. The proposal's current time ensures 'isVotingPeriod'. --