Merge pull request #25 from shillogatu/shill

Shill
This commit is contained in:
jw 2017-09-17 13:46:46 -07:00 committed by GitHub
commit f9274d9fcd
1 changed files with 4 additions and 1 deletions

View File

@ -14,7 +14,10 @@ def fork(bot, trigger):
try:
height=j["network"]["height"]
forkheight=1400000
if forkheight > height:
bot.say("The current block height is {0:,}. Fork height is {1:,}. {2:,} blocks to go, happening in approximately {3:.2f} hours.".format(height,forkheight,forkheight-height,(forkheight-height)/30.0))
else:
bot.say("I don't know when the next fork is.")
except:
bot.say("Something borked -_-")