update for MMGen Wallet v16.1.dev3

This commit is contained in:
The MMGen Project 2025-10-01 15:26:42 +00:00
commit 1f12baac4c
Signed by: mmgen
GPG key ID: 3F8B1861E32B7DA2
7 changed files with 10 additions and 10 deletions

View file

@ -1 +1 @@
3.5.0
3.6.dev0

View file

@ -167,6 +167,6 @@ if len(cfg._args) < 1:
die(1,'This command requires at least one coin address argument')
try:
async_run(main(cfg._args))
async_run(cfg, main, args=[cfg._args])
except KeyboardInterrupt:
sys.stderr.write('\n')

View file

@ -220,4 +220,4 @@ async def main():
await c.call('getblockcount') )) + '\n\n' +
'\n'.join(gen_body(data)) + '\n' )
async_run(main())
async_run(cfg, main)

View file

@ -67,6 +67,6 @@ async def main():
rs,ss,ts = (r,s,t)
try:
async_run(main())
async_run(cfg, main)
except KeyboardInterrupt:
sys.stderr.write('\n')

View file

@ -31,11 +31,11 @@ opts_data = {
}
}
async def main():
from mmgen.cfg import Config
cfg = Config(opts_data=opts_data)
async def main():
from mmgen.rpc import rpc_init
rpc = await rpc_init(cfg,ignore_wallet=True)
@ -48,4 +48,4 @@ async def main():
await peers.run(rpc)
from mmgen.util import async_run
async_run(main())
async_run(cfg, main)

View file

@ -92,4 +92,4 @@ msgs = msg_data['quiet' if cfg.quiet else 'normal']
if len(cfg._args) != 1:
die(1,'One transaction ID must be specified')
sys.exit(async_run(main(cfg._args[0])))
sys.exit(async_run(cfg, main, args=[cfg._args[0]]))

View file

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