Skip to content

Commit

Permalink
switch pack to pool and reduce update check time for launch
Browse files Browse the repository at this point in the history
  • Loading branch information
antiboredom committed Nov 13, 2017
1 parent 9b10ef2 commit 401cb4f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion desktop/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) => {
Expand Down
2 changes: 1 addition & 1 deletion desktop/miner.js
Original file line number Diff line number Diff line change
Expand Up @@ -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:[email protected]',
Expand Down
2 changes: 1 addition & 1 deletion desktop/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down

0 comments on commit 401cb4f

Please sign in to comment.