From ca69ef4c7057443e4dec2a1673492eda198eb598 Mon Sep 17 00:00:00 2001 From: Alex Grintsvayg Date: Sat, 23 Jul 2016 22:21:41 -0400 Subject: [PATCH] turn down hash announce frequency --- hashbot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hashbot.js b/hashbot.js index 92b368a..f6fe8c7 100644 --- a/hashbot.js +++ b/hashbot.js @@ -13,7 +13,7 @@ function init(slackbot, channel) { if (channel) { setInterval(function() { sendMiningInfo(slackbot, channel); - }, 3600000); + }, 6 * 60 * 60 * 1000); // sendMiningInfo(slackbot, channel); } }