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