Commit 6dd4b4db authored by Quentin Hamitouche's avatar Quentin Hamitouche

Add reset voting feature

parent 3c982c58
...@@ -83,7 +83,7 @@ contract Voting is Ownable { ...@@ -83,7 +83,7 @@ contract Voting is Ownable {
// ID de la proposition gagnante // ID de la proposition gagnante
uint public winningProposalId; uint public winningProposalId;
// Dates limites pour les différentes phases (fonctionnalité supplémentaire 1) // Dates limites pour les différentes phases (fonctionnalité supplémentaire 1, cassée)
uint public registrationEndTime; uint public registrationEndTime;
uint public votingEndTime; uint public votingEndTime;
...@@ -95,8 +95,6 @@ contract Voting is Ownable { ...@@ -95,8 +95,6 @@ contract Voting is Ownable {
*/ */
constructor(address _deployer) Ownable(_deployer) { constructor(address _deployer) Ownable(_deployer) {
workflowStatus = WorkflowStatus.RegisteringVoters; workflowStatus = WorkflowStatus.RegisteringVoters;
// Ajout d'une proposition vide à l'index 0
proposals.push(Proposal("Genesis Proposal", 0));
} }
/** /**
...@@ -418,4 +416,26 @@ contract Voting is Ownable { ...@@ -418,4 +416,26 @@ contract Voting is Ownable {
) external view onlyVoters returns (address) { ) external view onlyVoters returns (address) {
return delegations[_voterAddress]; return delegations[_voterAddress];
} }
/**
* @dev Retour à l'état initial (fonctionnalité supplémentaire 1 bis)
*/
function resetVoting() external onlyOwner {
require(
workflowStatus == WorkflowStatus.VotesTallied,
"Impossible de reinitialiser un vote non-termine"
);
for (uint i = 0; i < proposals.length; i++) {
proposals.pop();
}
winningProposalId = 0;
registrationEndTime = 0;
votingEndTime = 0;
WorkflowStatus previousStatus = workflowStatus;
workflowStatus = WorkflowStatus.VotingSessionEnded;
emit WorkflowStatusChange(previousStatus, workflowStatus);
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment