Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
45544fffd0 | |||
f227eaee37 |
4
package-lock.json
generated
4
package-lock.json
generated
@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "@mojoio/bobcat",
|
"name": "@mojoio/bobcat",
|
||||||
"version": "1.0.8",
|
"version": "1.0.9",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "@mojoio/bobcat",
|
"name": "@mojoio/bobcat",
|
||||||
"version": "1.0.8",
|
"version": "1.0.9",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@pushrocks/smartnetwork": "^2.0.14",
|
"@pushrocks/smartnetwork": "^2.0.14",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@mojoio/bobcat",
|
"name": "@mojoio/bobcat",
|
||||||
"version": "1.0.8",
|
"version": "1.0.9",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "a module to talk to bobcat miners",
|
"description": "a module to talk to bobcat miners",
|
||||||
"main": "dist_ts/index.js",
|
"main": "dist_ts/index.js",
|
||||||
|
@ -8,8 +8,8 @@ export class Bobcat {
|
|||||||
// STATIC
|
// STATIC
|
||||||
public static async createFromNetworkAddress(networkAddressArg: string) {
|
public static async createFromNetworkAddress(networkAddressArg: string) {
|
||||||
const newBobcat = new Bobcat(networkAddressArg);
|
const newBobcat = new Bobcat(networkAddressArg);
|
||||||
await newBobcat.gatherMinerDetails();
|
await newBobcat.checkMinerStatus().catch();
|
||||||
await newBobcat.checkMinerStatus();
|
await newBobcat.gatherMinerDetails().catch();
|
||||||
return newBobcat;
|
return newBobcat;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -41,4 +41,15 @@ export class Bobcat {
|
|||||||
this.latestMinerDetails = body;
|
this.latestMinerDetails = body;
|
||||||
return this.latestMinerDetails;
|
return this.latestMinerDetails;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* runs maintenance on the bobcat
|
||||||
|
*/
|
||||||
|
public async runMaintenance() {
|
||||||
|
await this.checkMinerStatus();
|
||||||
|
await this.gatherMinerDetails();
|
||||||
|
if (this.latestStatus.status !== 'Synced') {
|
||||||
|
console.log(`Miner ${this.latestMinerDetails.animal} is not synced. Restarting now!`);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
@ -11,4 +11,14 @@ export class BobcatManager {
|
|||||||
const newBobcat = await Bobcat.createFromNetworkAddress(networkAddressArg);
|
const newBobcat = await Bobcat.createFromNetworkAddress(networkAddressArg);
|
||||||
this.bobcats.push(newBobcat);
|
this.bobcats.push(newBobcat);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* runs the maintenance on all managed bobcats
|
||||||
|
*/
|
||||||
|
public async runMaintenance() {
|
||||||
|
console.log(`now running maintenance on ${this.bobcats.length} bobcats!`);
|
||||||
|
for (const bobcat of this.bobcats) {
|
||||||
|
await bobcat.runMaintenance();
|
||||||
|
}
|
||||||
|
};
|
||||||
}
|
}
|
Reference in New Issue
Block a user