aboutsummaryrefslogtreecommitdiff
path: root/vote/vote.ino
diff options
context:
space:
mode:
Diffstat (limited to 'vote/vote.ino')
-rw-r--r--vote/vote.ino4
1 files changed, 2 insertions, 2 deletions
diff --git a/vote/vote.ino b/vote/vote.ino
index 71d9c08..9eea591 100644
--- a/vote/vote.ino
+++ b/vote/vote.ino
@@ -107,7 +107,7 @@ void collectBallotData(
}
/// Clean outdated votes and mussels with no valid votes
-void cleanOldVotes() {
+void cleanOldBallotData() {
unsigned long now = millis();
for (int i = 0; i < voterCount; ) {
@@ -284,7 +284,7 @@ void loop() {
alignVotes();
concludeVote();
- cleanOldVotes(); // Keeps the voter stack tidy
+ cleanOldBallotData(); // Keeps the voter stack tidy
delay(500);
}