File tree Expand file tree Collapse file tree
src/electionguard-ui/ElectionGuard.UI Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1818 <ApplicationIdGuid >c0679a79-bc22-46ad-9c49-93de983e3fa2</ApplicationIdGuid >
1919
2020 <!-- Versions -->
21- <ApplicationDisplayVersion >1.91</ApplicationDisplayVersion >
21+ <ApplicationDisplayVersion >1.91.14 </ApplicationDisplayVersion >
2222 <ApplicationVersion >14</ApplicationVersion >
2323
2424 <SupportedOSPlatformVersion Condition =" $([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'" >15.3</SupportedOSPlatformVersion >
Original file line number Diff line number Diff line change @@ -56,15 +56,15 @@ public TallyCeremonyChecklist(
5656 _challengesResponded = challengesResponded ;
5757 QuorumReached = _guardiansJoined >= _quorum ;
5858 State = tally . State ;
59- TallyComplete = State == TallyState . Complete ;
59+ SubtaliesCombined = State >= TallyState . PendingGuardianDecryptShares ;
60+ AllDecryptionSharesComputed = SubtaliesCombined &&
61+ ( State > TallyState . PendingGuardianDecryptShares ||
62+ ( State == TallyState . PendingGuardianDecryptShares && _sharesComputed >= _quorum ) ) ;
6063 ChallengeCreated = AllDecryptionSharesComputed && State >= TallyState . PendingGuardianRespondChallenge ;
61- AllChallengesResponded = ChallengeCreated &&
64+ AllChallengesResponded = ChallengeCreated &&
6265 ( State > TallyState . PendingGuardianRespondChallenge ||
6366 ( State == TallyState . PendingGuardianRespondChallenge && _challengesResponded == _quorum ) ) ;
64- AllDecryptionSharesComputed = SubtaliesCombined &&
65- ( State > TallyState . PendingGuardianDecryptShares ||
66- ( State == TallyState . PendingGuardianDecryptShares && _sharesComputed >= _quorum ) ) ;
67- SubtaliesCombined = State >= TallyState . PendingGuardianDecryptShares ;
67+ TallyComplete = State == TallyState . Complete ;
6868 TallyStarted = State >= TallyState . TallyStarted ;
6969 IsAbandoned = State == TallyState . Abandoned ;
7070 }
You can’t perform that action at this time.
0 commit comments