Browse Source

update for MMGen Wallet v16.1.dev21

The MMGen Project 6 days ago
parent
commit
e5bc33a6d6
2 changed files with 3 additions and 3 deletions
  1. 2 2
      mmgen_node_tools/main_addrbal.py
  2. 1 1
      setup.cfg

+ 2 - 2
mmgen_node_tools/main_addrbal.py

@@ -44,7 +44,7 @@ def do_output(proto, addr_data, blk_hdrs):
 			heights = {u['height'] for u in unspents}
 			Msg('{}Balance: {}'.format(
 				indent,
-				sum(proto.coin_amt(u['amount']) for u in unspents).hl2(unit=True, fs='{:,}'))),
+				sum(proto.coin_amt(u['amount']) for u in unspents).hl3(unit=True, fs='{:,}'))),
 			Msg('{}{} unspent output{} in {} block{}'.format(
 				indent,
 				red(str(len(unspents))),
@@ -148,7 +148,7 @@ async def main(req_addrs):
 		good_addrs = len([v for v in addr_data.values() if v])
 
 		Msg('Total: {} in {} address{}'.format(
-			proto.coin_amt(res['total_amount']).hl2(unit=True, fs='{:,}'),
+			proto.coin_amt(res['total_amount']).hl3(unit=True, fs='{:,}'),
 			red(str(good_addrs)),
 			suf(good_addrs, 'es')))
 

+ 1 - 1
setup.cfg

@@ -37,7 +37,7 @@ python_requires = >=3.11
 include_package_data = True
 
 install_requires =
-	mmgen-wallet>=16.1.dev4
+	mmgen-wallet>=16.1.dev21
 	pyyaml
 	yahooquery