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 May 26, 2021
1 parent 759a0ed commit 4dc855d
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.3,%s\n", nonce, *local_hashrate, identifier);
len = sprintf(buf, "%ld,%d,nonceMiner v1.3.4,%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.3...");
puts("Initializing nonceMiner v1.3.4...");
printf("Enter username: ");
if(scanf("%127s", username) != 1){
puts("Invalid username, exiting...");
Expand Down

0 comments on commit 4dc855d

Please sign in to comment.