Created
April 12, 2018 22:23
-
-
Save jbarros35/2986411b5aca7b0b60949f7762776b17 to your computer and use it in GitHub Desktop.
Angular execute a function every 60 seconds
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$interval(function() { | |
var d = Date(); | |
console.log('----- sending transaction 1 wei '+d+'------'); | |
}, 60000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment