fix(core): update

This commit is contained in:
Philipp Kunz 2022-02-28 18:11:01 +01:00
parent 806de97d22
commit 812a43449d

View File

@ -24,6 +24,15 @@ export class BobcatManager {
await this.runMaintenance();
}
}), '0 0 * * * *');
this.taskmanager.addAndScheduleTask(new plugins.taskbuffer.Task({
name: 'contStatus',
taskFunction: async () => {
this.actionStore.push();
for (const bobcat of this.bobcats) {
bobcat.checkMinerStatus();
};
}
}), '0 * * * * *');
}
/**