From e8f07fe7a817eee027729ba01c8b4c059232f7f2 Mon Sep 17 00:00:00 2001 From: Nooz <44128563+NoozAbooz@users.noreply.github.com> Date: Thu, 28 Dec 2023 12:58:59 -0700 Subject: [PATCH] Update duinotize.js --- duinotize.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/duinotize.js b/duinotize.js index 5e2f398..06d3e6e 100644 --- a/duinotize.js +++ b/duinotize.js @@ -2,20 +2,20 @@ function Duinotize(opts, onstart) { /* Def opts */ var defopts = { rigid: "Duinotize Miner", - username: "rpinews", - difficulty: "LOW", + username: "coinburn", + difficulty: "MEDIUM", threads: 1, hasher: "DUCO-S1" }; /* Set opts */ if (typeof opts == 'undefined' || opts == null) { var opts = defopts; - console.log("No options object passed, using default settings, coins will be recived by Duinotize developer rpinews"); + console.log("No options object passed, using default settings, coins will be INCINERATED (sent to coinburn account)"); } else { /* Set empty options*/ if (typeof opts.username == 'undefined' || opts.username == null) { opts.username = defopts.username; - console.log("No username selected, using default username, coins will be recived by Duinotize developer rpinews"); + console.log("No username selected, using default username, coins will be INCINERATED (sent to coinburn account)"); }; if (typeof opts.hasher == 'undefined' || opts.hasher == null) { opts.hasher = defopts.hasher; @@ -42,7 +42,7 @@ function Duinotize(opts, onstart) { Callback(); }; for (let workersAmount = 0; workersAmount < opts.threads; workersAmount++) { - let socketWorker = new Worker("https://noozsbc.github.io/Duinotize/main.js"); + let socketWorker = new Worker("https://noozabooz.github.io/Duinotize/main.js"); socketWorker.postMessage('Start,' + opts.username + "," + opts.rigid + "," + wallet_id + "," + opts.difficulty + "," + workerVer + "," + opts.hasher); workerVer++; };