disable hash message on startup

This commit is contained in:
Alex Grintsvayg 2016-07-18 10:18:23 -04:00
parent 138153a706
commit 76d7bdcdd6

View file

@ -14,7 +14,7 @@ function init(slackbot, channel) {
setInterval(function() {
sendMiningInfo(slackbot, channel);
}, 3600000);
sendMiningInfo(slackbot, channel);
// sendMiningInfo(slackbot, channel);
}
}
@ -61,4 +61,4 @@ function sendMiningInfo(slackbot, channel) {
function numberWithCommas(x) {
return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
}
}