Skip to content

Instantly share code, notes, and snippets.

@Wicowyn
Created November 10, 2016 09:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Wicowyn/aefa2e014d4b1bd2a04cea29d20fbbe2 to your computer and use it in GitHub Desktop.
Save Wicowyn/aefa2e014d4b1bd2a04cea29d20fbbe2 to your computer and use it in GitHub Desktop.
zcash miner on qrad
#!/usr/bin/env python
import sys
import qarnot
import os
import operator
# Edit 'samples.conf' to provide your own credentials
# Create a connection, from which all other objects will be derived
conn = qarnot.Connection('connection.conf')
# Create the tasks
task = conn.create_task('zcash', 'docker-network')
task.constants['DOCKER_REPO'] = 'marsmensch/zcash-cpuminer'
task.constants['DOCKER_TAG'] = 'latest'
task.constants['DOCKER_CMD'] = '-l zec.suprnova.cc:2142 -u yapiti.qrad -p kikoolol'
task.run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment