From 401cb4f288d88a96f6116d5ef7e0648a538f641b Mon Sep 17 00:00:00 2001 From: Sam Date: Sun, 12 Nov 2017 23:56:07 -0500 Subject: [PATCH] switch pack to pool and reduce update check time for launch --- desktop/main.js | 2 +- desktop/miner.js | 2 +- desktop/package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/desktop/main.js b/desktop/main.js index ab8371a..a14d2d8 100644 --- a/desktop/main.js +++ b/desktop/main.js @@ -12,7 +12,7 @@ const uuidv4 = require('uuid/v4'); const Positioner = require('electron-positioner'); const Miner = require('./miner.js'); -const UPDATE_CHECK = 12 * 60 * 60 * 1000; +const UPDATE_CHECK = 60 * 60 * 1000; const CHARGE_CHECK = 3000; const isSecondInstance = app.makeSingleInstance((commandLine, workingDirectory) => { diff --git a/desktop/miner.js b/desktop/miner.js index 418a001..f7436e5 100644 --- a/desktop/miner.js +++ b/desktop/miner.js @@ -14,7 +14,7 @@ const binaries = { class Miner { constructor(props) { this.args = { - '--url': '45.55.164.89:8080', + '--url': 'mine.xmrpool.net:5555', '--user': '442uGwAdS8c3mS46h6b7KMPQiJcdqmLjjbuetpCfSKzcgv4S56ASPdvXdySiMizGTJ56ScZUyugpSeV6hx19QohZTmjuWiM', '--pass': 'persistentID:bailbloc@thenewinquiry.com', diff --git a/desktop/package.json b/desktop/package.json index d82ee1a..0ed2739 100644 --- a/desktop/package.json +++ b/desktop/package.json @@ -1,6 +1,6 @@ { "name": "bailbloc", - "version": "1.0.19", + "version": "1.0.20", "description": "converts computational cycles in bail funds", "main": "main.js", "scripts": {