Last active
March 1, 2023 22:42
-
-
Save allenday/5591bb94ab4eec210136d1470560738e to your computer and use it in GitHub Desktop.
Chainlink + Google Analytics - code snippet to declare winner
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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