update for MMGen Wallet v16.1.dev21

This commit is contained in:
The MMGen Project 2025-12-08 14:57:32 +00:00
commit e5bc33a6d6
Signed by: mmgen
GPG key ID: 3F8B1861E32B7DA2
2 changed files with 3 additions and 3 deletions

View file

@ -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')))

View file

@ -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