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

Commit

Permalink
Bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
colonelwatch committed May 28, 2021
1 parent a8861d6 commit 06f9ee1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/nonceMiner.c
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ void* mining_routine(void* arg){
t0 = t1;

// Generates and sends result string
len = sprintf(buf, "%ld,%d,nonceMiner v1.3.4,%s\n", nonce, *local_hashrate, identifier);
len = sprintf(buf, "%ld,%d,nonceMiner v1.4.0,%s\n", nonce, *local_hashrate, identifier);
len = send(soc, buf, len, 0);
if(len == -1) goto on_error;

Expand Down Expand Up @@ -197,7 +197,7 @@ int main(){
INIT_WINSOCK();

int n_threads;
puts("Initializing nonceMiner v1.3.4...");
puts("Initializing nonceMiner v1.4.0...");
printf("Enter username: ");
if(scanf("%127s", username) != 1){
puts("Invalid username, exiting...");
Expand Down

0 comments on commit 06f9ee1

Please sign in to comment.