This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
iMac-de-Pablo:~ Jorge$ ethminer --help | |
Usage ethminer [OPTIONS] | |
Options: | |
Work farming mode: | |
-F,--farm <url> Put into mining farm mode with the work server at URL (default: http://127.0.0.1:8545) | |
--farm-recheck <n> Leave n ms between checks for changed work (default: 500). | |
--no-precompute Don't precompute the next epoch's DAG. | |
Ethash verify mode: | |
-w,--check-pow <headerHash> <seedHash> <difficulty> <nonce> Check PoW credentials for validity. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env sh | |
## | |
# This is script with usefull tips taken from: | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# | |
# install it: | |
# curl -sL https://raw.github.com/gist/2108403/hack.sh | sh | |
# |