broadcast last sync status

This commit is contained in:
Matias Alejo Garcia 2014-02-18 12:50:27 -03:00
parent 9bc952a274
commit 6430f05d30
1 changed files with 3 additions and 3 deletions

View File

@ -70,7 +70,7 @@ function spec() {
HistoricSync.prototype.setError = function(err) {
var self = this;
self.error = err.toString();
self.error = err.message?err.message:err.toString();
self.status='error';
self.showProgress();
return err;
@ -384,13 +384,12 @@ function spec() {
async.whilst(
function() {
self.showProgress();
return self.status === 'syncing';
},
function (w_cb) {
self.getFn(function(err,blockInfo) {
if (err) return w_cb(self.setError(err));
self.showProgress();
if (blockInfo && blockInfo.hash) {
self.syncedBlocks++;
self.sync.storeTipBlock(blockInfo, self.allowReorgs, function(err) {
@ -408,6 +407,7 @@ function spec() {
else {
self.endTs = Date.now();
self.status = 'finished';
self.shouldBroadcast
return w_cb(err);
}
});