From 831f11096a0021880d6274c91c01665f72b309e8 Mon Sep 17 00:00:00 2001 From: ferretinjapan Date: Sat, 6 May 2017 18:43:22 +0930 Subject: [PATCH] Fixed XMR percentage growth Now it actually reflects the XMR growth if you had invested those coins into Monero instead of the ASP. --- trifling.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trifling.py b/trifling.py index e666177..393f70f 100644 --- a/trifling.py +++ b/trifling.py @@ -440,7 +440,7 @@ def asp(bot, trigger): aspsign = '+' else: aspsign = '-' - xmrpercent = (((total / xmrbtc_price ) / 650)-1)*100 + xmrpercent = ((650*(xmrbtc_price*stamp_price)/14950)-1)*100 if xmrpercent >= 0: xmrsign = '+' else: