Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
CI
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Guillaume DEWISME
CI
Commits
6dd4b4db
Commit
6dd4b4db
authored
Mar 23, 2025
by
Quentin Hamitouche
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add reset voting feature
parent
3c982c58
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
3 deletions
+23
-3
Voting.sol
contracts/Voting.sol
+23
-3
No files found.
contracts/Voting.sol
View file @
6dd4b4db
...
@@ -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);
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment