4 Commits

Author SHA1 Message Date
e4c41b82ef 1.0.17 2022-02-27 21:33:55 +01:00
47df20fd7e 1.0.16 2022-02-27 21:27:15 +01:00
2182f51e09 1.0.15 2022-02-27 21:19:21 +01:00
35e4f129df update 2022-02-27 20:19:06 +00:00
6 changed files with 16 additions and 13 deletions

18
package-lock.json generated
View File

@ -1,16 +1,17 @@
{
"name": "@mojoio/bobcat",
"version": "1.0.14",
"version": "1.0.17",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@mojoio/bobcat",
"version": "1.0.14",
"version": "1.0.17",
"license": "MIT",
"dependencies": {
"@pushrocks/smartdelay": "^2.0.13",
"@pushrocks/smartnetwork": "^2.0.14",
"@pushrocks/smartpromise": "^3.1.7",
"@pushrocks/smartrequest": "^1.1.56",
"@pushrocks/taskbuffer": "^2.1.17"
},
@ -2794,10 +2795,9 @@
}
},
"node_modules/@pushrocks/smartpromise": {
"version": "3.1.6",
"resolved": "https://verdaccio.lossless.one/@pushrocks%2fsmartpromise/-/smartpromise-3.1.6.tgz",
"integrity": "sha512-v+RyVpspzYuBcV/aWXqwC03TWYeFLj7aWMG3IBDFmH2ssgug+82KLW/gw2WB2aVOEvmSkfI9OVvOQz2OsLbYlA==",
"license": "MIT"
"version": "3.1.7",
"resolved": "https://registry.npmjs.org/@pushrocks/smartpromise/-/smartpromise-3.1.7.tgz",
"integrity": "sha512-2gLQCeviEJwZ+cHHtK2Ks98brZatGC6dPXKIs1tVgJsiNgRFjnp90fESuJ1Pmoe7RrS+7J3mO4NtsFHAJJ/y5w=="
},
"node_modules/@pushrocks/smartpuppeteer": {
"version": "1.0.36",
@ -17854,9 +17854,9 @@
}
},
"@pushrocks/smartpromise": {
"version": "3.1.6",
"resolved": "https://verdaccio.lossless.one/@pushrocks%2fsmartpromise/-/smartpromise-3.1.6.tgz",
"integrity": "sha512-v+RyVpspzYuBcV/aWXqwC03TWYeFLj7aWMG3IBDFmH2ssgug+82KLW/gw2WB2aVOEvmSkfI9OVvOQz2OsLbYlA=="
"version": "3.1.7",
"resolved": "https://registry.npmjs.org/@pushrocks/smartpromise/-/smartpromise-3.1.7.tgz",
"integrity": "sha512-2gLQCeviEJwZ+cHHtK2Ks98brZatGC6dPXKIs1tVgJsiNgRFjnp90fESuJ1Pmoe7RrS+7J3mO4NtsFHAJJ/y5w=="
},
"@pushrocks/smartpuppeteer": {
"version": "1.0.36",

View File

@ -1,6 +1,6 @@
{
"name": "@mojoio/bobcat",
"version": "1.0.14",
"version": "1.0.17",
"private": false,
"description": "a module to talk to bobcat miners",
"main": "dist_ts/index.js",
@ -39,6 +39,7 @@
"dependencies": {
"@pushrocks/smartdelay": "^2.0.13",
"@pushrocks/smartnetwork": "^2.0.14",
"@pushrocks/smartpromise": "^3.1.7",
"@pushrocks/smartrequest": "^1.1.56",
"@pushrocks/taskbuffer": "^2.1.17"
}

View File

@ -15,8 +15,8 @@ export class Bobcat {
public static async createFromNetworkAddress (networkAddressArg: string) {
const newBobcat = new Bobcat(networkAddressArg);
try {
await newBobcat.checkMinerStatus();
await newBobcat.gatherMinerDetails();
await plugins.smartpromise.timeoutAndContinue(newBobcat.checkMinerStatus());
await plugins.smartpromise.timeoutAndContinue(newBobcat.gatherMinerDetails());
} catch (err) {
console.log('initial adding completed with errors');
}

View File

@ -45,7 +45,7 @@ export class BobcatManager {
await plugins.smartdelay.delayFor(10000);
for (const bobcat of this.bobcats) {
console.log(`now running maintenance on ${bobcat.latestMinerDetails.animal} at ${bobcat.networkAddress}`);
await bobcat.runMaintenance();
await plugins.smartpromise.timeoutAndContinue(bobcat.runMaintenance());
}
};

View File

@ -1,11 +1,13 @@
import * as smartdelay from '@pushrocks/smartdelay';
import * as smartnetwork from '@pushrocks/smartnetwork';
import * as smartpromise from '@pushrocks/smartpromise';
import * as smartrequest from '@pushrocks/smartrequest';
import * as taskbuffer from '@pushrocks/taskbuffer';
export {
smartdelay,
smartnetwork,
smartpromise,
smartrequest,
taskbuffer,
}