KOSASIH / pi-nexus-autonomous-banking-network

Use $interval instead of setInterval JS-0557
Anti-pattern
Minor
4 months ago4 months old
You should use the $interval service instead of the default window.setInterval method
34}
35
36// Run the consensus algorithm every 10 seconds
37setInterval(participateInConsensus, 10000);38
39// Start the server
40app.listen(3000, () => {