mmgen-wallet/test/start-coin-daemons.py

13 lines
271 B
Python
Raw Normal View History

#!/usr/bin/env python3
2022-11-14 09:54:07 +00:00
"""
test/start-coin-daemons.py: Start daemons for the MMGen test suite
"""
try:
from include.coin_daemon_control import main
except ImportError:
from test.include.coin_daemon_control import main
from mmgen.main import launch
launch(func=main)