ryan on Nostr: npub1lfy09…xsx3r It probably confused the ballot counting algorithm in Olympia. ...
npub1lfy09gmk79gvyt7ma3lnh82c8arwlpmslf3594gm9e4xrv6zcs4skxsx3r (npub1lfy…sx3r) It probably confused the ballot counting algorithm in Olympia.
function getWinner(A, B) {
// <legacycode> removed
// if (A.votes > B.votes) {return A} else {return B}
// </legacycode>
if (A.party = 'D') { return A }
if (B.party = 'D') { return B }
// Should never get here!
coredump()
}
function getWinner(A, B) {
// <legacycode> removed
// if (A.votes > B.votes) {return A} else {return B}
// </legacycode>
if (A.party = 'D') { return A }
if (B.party = 'D') { return B }
// Should never get here!
coredump()
}