Remove extraneous unused code

This commit is contained in:
scoobybejesus 2018-01-23 18:58:45 -05:00 committed by GitHub
parent f51753ea77
commit 4e05ccdc51
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 42 deletions

View File

@ -100,32 +100,11 @@ def krak(bot, trigger):
stringtosay += "{0} at {1:.8f} on {2:.2f} 24 h {0} volume. ".format(coin, float(j['result']['X'+str(coin)+'XXBT']['c'][0]), float(j['result']['X'+str(coin)+'XXBT']['v'][1])) stringtosay += "{0} at {1:.8f} on {2:.2f} 24 h {0} volume. ".format(coin, float(j['result']['X'+str(coin)+'XXBT']['c'][0]), float(j['result']['X'+str(coin)+'XXBT']['v'][1]))
except: except:
bot.say("Error connecting to Kraken") bot.say("Error connecting to Kraken")
# if len(coin) > 5 or len(coin) < 2:
# bot.say("Coin ticker is too long or short")
# elif coin == "PIVX":
# bot.say("Masternodes + PoS...what could possibly go wrong?")
# else:
try: try:
bot.say(stringtosay) bot.say(stringtosay)
except: except:
bot.say("Error getting data") bot.say("Error getting data")
# THIS WAS COPIED FROM THE POLO FUNCTION, AND IS UNUSED, AT LEAST FOR NOW
# label="BTC_" + coin
# try:
# ticker=j[label]
# last=float(ticker['last'])
# change=float(ticker['percentChange'])
# vol=float(ticker['baseVolume'])
# if change >= 0:
# sign = '+'
# else:
# sign = ''
# bot.say("{0} at {1:.8f} BTC; {2}{3:.2f}% over 24 hours on {4:.3f} BTC volume".format(coin, last, sign, change*100, vol))
# except:
# bot.say("ERROR!")
@sopel.module.commands('usdt') @sopel.module.commands('usdt')
def usdt(bot, trigger): def usdt(bot, trigger):
try: try:
@ -597,27 +576,6 @@ def xmrtall(bot, trigger):
last=float(xmr['last']) last=float(xmr['last'])
# change=float(xmr['percentChange']) # change=float(xmr['percentChange'])
vol=float(xmr['baseVolume']) vol=float(xmr['baseVolume'])
# '''remove?
# if change >= 0:
# sign = '+'
# else:
# sign = ''
# face = ''
# if change > 0.10:
# face = u'\u263d'.encode('utf8')
# if 0.10 >= change > 0.05:
# face = u'\u2661'.encode('utf8')
# if 0.05 >= change > 0.02:
# face = u'\u263a'.encode('utf8')
# if 0.02 >= change > -0.02:
# face = u'\u2694'.encode('utf8')
# if -0.02 >= change > -0.05:
# face = u'\u2639'.encode('utf8')
# if -0.05 >= change > -0.1:
# face = u'\u2620'.encode('utf8')
# if change < -0.1:
# face = u'\u262d'.encode('utf8')
# '''
stringtosend += "Poloniex last: {0:.6f} BTC on {1:.2f} BTC volume | ".format(last, vol) stringtosend += "Poloniex last: {0:.6f} BTC on {1:.2f} BTC volume | ".format(last, vol)
except: except:
bot.say("Something borked ¯\(º_o)/¯") bot.say("Something borked ¯\(º_o)/¯")