diff --git a/bin/MasterDistiller.py b/bin/MasterDistiller.py
index d1ff4f53324fd4f80ea88b5d33a0838451dfd09e..1bbcccf3cbe63d37c0e6bee93910d548d940bc82 100755
--- a/bin/MasterDistiller.py
+++ b/bin/MasterDistiller.py
@@ -25,7 +25,7 @@ def distribute():
     rcpt = janitor.transact( web3=bfa.w3, function=distillery.functions.distribute, extragas=4000000)
     print('Distribute returned succesfully in block# {} using {} gas.'.format(rcpt.blockNumber, rcpt.gasUsed))
     afterBal = distbalance()
-    print('Distributed {} {}.'.format( int(decimal.Decimal(beforeBal - afterBal) / notation['num']), notation['name']))
+    print('Distributed {0:,.0f} Gwei.'.format((beforeBal - afterBal)/(10**9)))
 
 def editAccount(entry:str, beneflist:list):
     acct                =   None