Skip to content
This repository has been archived by the owner on Nov 24, 2021. It is now read-only.

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
colonelwatch committed Aug 23, 2021
1 parent 5f7b996 commit 076cbad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/nonceMiner.c
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ char server_address[256] = ""; // Default is empty string, but must be configure
char server_port[16] = "";
char username[128];
char identifier[128] = ""; // Default value should be empty string
char program_name[64] = "nonceMiner v2.2.0"; // Can be overrided with -n option
char program_name[64] = "nonceMiner v2.2.1"; // Can be overrided with -n option

// Prints log as formatted along with timestamp, newline, and four-letter code
void print_formatted_log(const char* code, const char* format, ...){
Expand All @@ -151,7 +151,7 @@ void print_formatted_log(const char* code, const char* format, ...){
}

void print_help(){
puts("nonceMiner v2.2.0 by colonelwatch");
puts("nonceMiner v2.2.1 by colonelwatch");
puts("A miner about running the DUCO-S1 algorithm as damn fast as possible");
puts("Typical usage: ./nonceMiner -u <your username here> -o <node URL here> [OPTIONS]");
puts("Options:");
Expand Down Expand Up @@ -505,7 +505,7 @@ int main(int argc, char **argv){
else
job_request_len = sprintf(job_request, "JOB,%s,%s\n", username, diff_string);

printf("Initializing nonceMiner v2.2.0...\n");
printf("Initializing nonceMiner v2.2.1...\n");
printf("Configured with username '%s', ", username);
printf("identifier '%s', ", identifier);
printf("difficulty '%s', ", diff_string);
Expand Down

0 comments on commit 076cbad

Please sign in to comment.