aboutsummaryrefslogtreecommitdiff
path: root/cpu-miner.c
diff options
context:
space:
mode:
authorJeff Garzik <jeff@garzik.org>2010-11-26 20:15:07 -0500
committerJeff Garzik <jgarzik@redhat.com>2010-11-26 20:15:07 -0500
commita50201eb2142f6ea7ffe451c87a341ef158be84e (patch)
tree98610a2befc0931560a34695053e617f97ff4459 /cpu-miner.c
parent099b6b065e29abe4da02c1271883963b2957224d (diff)
Improve --help output. Mention --help in README.
Diffstat (limited to 'cpu-miner.c')
-rw-r--r--cpu-miner.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/cpu-miner.c b/cpu-miner.c
index 9690d29..e487c58 100644
--- a/cpu-miner.c
+++ b/cpu-miner.c
@@ -62,28 +62,28 @@ static struct option_help options_help[] = {
{ "help",
"(-h) Display this help text" },
- { "algo",
+ { "algo XXX",
"(-a XXX) Specify sha256 implementation:\n"
- "\tc\t\tLinux kernel sha256, implemented in C"
+ "\tc\t\tLinux kernel sha256, implemented in C (default)"
#ifdef __SSE__
"\n\t4way\t\ttcatm's 4-way SSE2 implementation"
#endif
},
{ "debug",
- "(-D) Enable debug output" },
+ "(-D) Enable debug output (default: off)" },
{ "protocol-dump",
- "(-P) Verbose dump of protocol-level activities" },
+ "(-P) Verbose dump of protocol-level activities (default: off)" },
- { "threads",
+ { "threads N",
"(-t N) Number of miner threads (default: 1)" },
- { "url",
+ { "url URL",
"URL for bitcoin JSON-RPC server "
"(default: " DEF_RPC_URL ")" },
- { "userpass",
+ { "userpass USERNAME:PASSWORD",
"Username:Password pair for bitcoin JSON-RPC server "
"(default: " DEF_RPC_USERPASS ")" },
};
@@ -317,7 +317,7 @@ static void show_usage(void)
{
int i;
- printf("Summary: minerd [options]\n\nSupported options:\n");
+ printf("Usage:\tminerd [options]\n\nSupported options:\n");
for (i = 0; i < ARRAY_SIZE(options_help); i++) {
struct option_help *h;