Skip to content

Commit

Permalink
Change server port
Browse files Browse the repository at this point in the history
  • Loading branch information
sys-256 committed Jul 7, 2024
1 parent 4ee6c32 commit a7e7df0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ onmessage = (event) => { // Execute on message from the main script
const [username, rigid, workerVer] = event.data;

// Create a connection to the server
let socket = new WebSocket(`wss://magi.duinocoin.com:14808/`);
let socket = new WebSocket(`wss://magi.duinocoin.com:8443/`);

socket.onmessage = (event) => { // Execute on message from the server
if (event.data.startsWith(`3.`)) { // If the server sends it's version, it's ready to send a job
Expand Down

0 comments on commit a7e7df0

Please sign in to comment.