Skip to content
Snippets Groups Projects
Commit 27d0043c authored by Robert Martin-Legene's avatar Robert Martin-Legene
Browse files

More practical reporting.

parent da272056
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment