insight-ui-zcash/app/models/Status.js

53 lines
1.0 KiB
JavaScript
Raw Normal View History

2014-01-15 12:15:14 -08:00
'use strict';
require('classtool');
function spec() {
var async = require('async');
var RpcClient = require('bitcore/RpcClient').class();
var config = require('../../config/config');
var rpc = new RpcClient(config.bitcoind);
function Status() {
this.info = {};
2014-01-15 12:39:11 -08:00
this.difficulty = {};
2014-01-15 12:15:14 -08:00
}
Status.prototype.getInfo = function(next) {
var that = this;
async.series([
function (cb) {
2014-01-15 12:39:11 -08:00
rpc.getInfo(function(err, info){
2014-01-15 12:15:14 -08:00
if (err) return cb(err);
2014-01-15 12:39:11 -08:00
that.info = info.result;
return cb();
});
}
], function (err) {
return next(err);
});
};
Status.prototype.getDifficulty = function(next) {
var that = this;
async.series([
function (cb) {
rpc.getDifficulty(function(err, df){
if (err) return cb(err);
that.difficulty = df.result;
2014-01-15 12:15:14 -08:00
return cb();
});
}
], function (err) {
return next(err);
});
};
return Status;
}
module.defineClass(spec);