code cleanup

This commit is contained in:
Chris Troutner
2024-12-07 21:27:41 -08:00
parent 764905b041
commit 3606a2d31b
2 changed files with 1 additions and 4 deletions
+1 -1
View File
@@ -38,7 +38,7 @@ class TimerControllers {
// Any new timer control functions can be added here. They will be started
// when the server starts.
this.optimizeWalletHandle = setInterval(this.exampleTimerFunc, 60000 * 60)
this.cleanUsageHandle = setInterval(this.cleanUsage, 60000 * 1) // 1 hour
this.cleanUsageHandle = setInterval(this.cleanUsage, 60000 * 60) // 1 hour
return true
}