Some misused variables

Reporeted wrong values.
This commit is contained in:
ferretinjapan 2017-05-14 22:27:08 +09:30 committed by GitHub
parent caea23cef0
commit d3c95bee31
1 changed files with 2 additions and 2 deletions

View File

@ -440,7 +440,7 @@ def asp(bot, trigger):
value_ripple = float(last_ripple*27962.37965895) value_ripple = float(last_ripple*27962.37965895)
value_ripple_h = float(3.17485452) value_ripple_h = float(3.17485452)
value_zcash = float(last_zcash*16.47649534) value_zcash = float(last_zcash*16.47649534)
total = value_dash + value_decred + value_factom + value_golem + value_maidsafecoin + value_augur + value_stellar + value_nem + value_ripple + value_zcash total = value_dash + value_decred + value_factom + value_golem + value_maidsafecoin + value_augur + value_stellar_h + value_nem + value_ripple_h + value_zcash
xmr_totalvalue = float(total / xmrbtc_price) xmr_totalvalue = float(total / xmrbtc_price)
asppercent = (((stamp_price * total) / 14950)-1)*100 asppercent = (((stamp_price * total) / 14950)-1)*100
if asppercent >= 0: if asppercent >= 0:
@ -453,6 +453,6 @@ def asp(bot, trigger):
else: else:
xmrsign = '-' xmrsign = '-'
bot.say("{0} {1:.2f}BTC; {2} {3:.2f}BTC; {4} {5:.2f}BTC; {6} {7:.2f}BTC; {8} {9:.2f}BTC; {10} {11:.2f}BTC; {12} {13:.2f}[{14:.2f}]BTC; {15} {16:.2f}BTC; {17} {18:.2f}[{19:.2f}]BTC; {20} {21:.2f}BTC; ASP Total:{22:.2f}BTC/{23:,.0f}USD/{24:,.1f}XMR (02-May outlay, 10BTC/14,950USD/650XMR) (Since begin ASP:{25}{26:.2f}% XMR:{27}{26:.2f}%, Harvested 11.52BTC)".format("DASH", value_dash, "DCR", value_decred, "FCT", value_factom, "GNT", value_golem, "MAID", value_maidsafecoin, "REP", value_augur, "STR", value_stellar, value_stellar_h, "XEM", value_nem, "XRP", value_ripple, value_ripple_h, "ZEC", value_zcash, total, stamp_price * total, xmr_totalvalue, aspsign, asppercent, xmrsign, xmrpercent)) bot.say("{0} {1:.2f}BTC; {2} {3:.2f}BTC; {4} {5:.2f}BTC; {6} {7:.2f}BTC; {8} {9:.2f}BTC; {10} {11:.2f}BTC; {12} {13:.2f}[{14:.2f}]BTC; {15} {16:.2f}BTC; {17} {18:.2f}[{19:.2f}]BTC; {20} {21:.2f}BTC; ASP Total:{22:.2f}BTC/{23:,.0f}USD/{24:,.1f}XMR (02-May outlay, 10BTC/14,950USD/650XMR) (Since begin ASP:{25}{26:.2f}% XMR:{27}{28:.2f}%, Harvested 11.52BTC)".format("DASH", value_dash, "DCR", value_decred, "FCT", value_factom, "GNT", value_golem, "MAID", value_maidsafecoin, "REP", value_augur, "STR", value_stellar, value_stellar_h, "XEM", value_nem, "XRP", value_ripple, value_ripple_h, "ZEC", value_zcash, total, stamp_price * total, xmr_totalvalue, aspsign, asppercent, xmrsign, xmrpercent))
except: except:
bot.say("ERROR!") bot.say("ERROR!")