From 280f1fd351adea5bd3a0c3d6966de1829210abdb Mon Sep 17 00:00:00 2001
From: Moul <moul@moul.re>
Date: Sun, 24 May 2020 14:08:24 +0200
Subject: [PATCH] [mod] balance: Get rid of useless comparison to M

Which is hardly comparable the more N is bigger
The comparison to M/N makes more sense
We could round to five instead of two digits, to be able to see
something, but that does not make sense as explain earlier
---
 silkaj/money.py | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/silkaj/money.py b/silkaj/money.py
index b25b04e2..54aa89c8 100644
--- a/silkaj/money.py
+++ b/silkaj/money.py
@@ -86,12 +86,6 @@ async def show_amount_from_pubkey(pubkey, value):
             "{0} x M/N".format(round(totalAmountInput / average, 2)),
         ]
     )
-    display.append(
-        [
-            "Total relative to M",
-            "{0} % M".format(round(totalAmountInput / monetary_mass, 2)),
-        ]
-    )
     echo(tabulate(display, tablefmt="fancy_grid"))
 
 
-- 
GitLab