From 4bf3609e413d9f8725aa609cae1ca1618a570ce2 Mon Sep 17 00:00:00 2001 From: Bram <84628826+sys-256@users.noreply.github.com> Date: Wed, 26 Jan 2022 17:03:41 +0100 Subject: [PATCH] Update version number from 3.3 to 3.4 --- worker.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worker.js b/worker.js index 6e817b4..1b59fde 100644 --- a/worker.js +++ b/worker.js @@ -49,7 +49,7 @@ onmessage = (event) => { // Execute on message from the main script // Print the hashrate in the console console.log(`CPU${workerVer}: The hashrate is ${hashrate} H/s. Sending the result back to the server...`); // Send the result back to the server - socket.send(`${result},${hashrate},Duino-JS v3.3 by sys-256,${rigid}`); + socket.send(`${result},${hashrate},Duino-JS v3.4 by sys-256,${rigid}`); // Break the script so it stops calculating the other possible hashes break; }