Reinitialize repository... hacked by muscleman...

This commit is contained in:
Daniel Vandal
2020-02-10 15:49:40 -05:00
parent 7187ef64fa
commit ae9d287a70
187 changed files with 40054 additions and 20 deletions

View File

@@ -0,0 +1,24 @@
/**
* Cryptonote Node.JS Pool
* https://github.com/dvandal/cryptonote-nodejs-pool
*
* Charts data collector
**/
// Load required modules
let fs = require('fs');
let async = require('async');
let http = require('http');
let charts = require('./charts.js');
// Initialize log system
let logSystem = 'chartsDataCollector';
require('./exceptionWriter.js')(logSystem);
/**
* Run charts data collector
**/
log('info', logSystem, 'Started');
charts.startDataCollectors();