From 5a301f248c724b9a65630f3f4c8d09a7cc6416df Mon Sep 17 00:00:00 2001 From: Aryan Malik <88618913+Aryan9592@users.noreply.github.com> Date: Mon, 9 Oct 2023 23:33:49 +0530 Subject: [PATCH] Update Voting.sol: Enhanced 'Slots' usage --- Level2/Voting/Voting.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Level2/Voting/Voting.sol b/Level2/Voting/Voting.sol index 6bd7e6b..a0643ff 100644 --- a/Level2/Voting/Voting.sol +++ b/Level2/Voting/Voting.sol @@ -6,9 +6,9 @@ contract Voting { address public owner; address public winnerAddress; + bool votingStarted; string public eventName; uint public totalVote; - bool votingStarted; struct Candidate{ string name;