Skip to content

Instantly share code, notes, and snippets.

@allenday
Last active March 1, 2023 22:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save allenday/5591bb94ab4eec210136d1470560738e to your computer and use it in GitHub Desktop.
Save allenday/5591bb94ab4eec210136d1470560738e to your computer and use it in GitHub Desktop.
Chainlink + Google Analytics - code snippet to declare winner
function declareWinner() public onlyOwner {
if (charity1Votes == charity2Votes) {
winner = 'Charity #1 and #2 tied!';
}
if (charity1Votes > charity2Votes) {
winner = 'Charity #1 won!';
}
if (charity1Votes > charity2Votes) {
winner = 'Charity #2 won!';
}
emit WinnerDeclared(winner);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment