stop-coin-daemons.py 228 B

123456789101112
  1. #!/usr/bin/env python3
  2. """
  3. test/stop-coin-daemons.py: Stop daemons for the MMGen test suite
  4. """
  5. try:
  6. from include.coin_daemon_control import main
  7. except ImportError:
  8. from test.include.coin_daemon_control import main
  9. main()