ignore history server errors

This commit is contained in:
Matias Alejo Garcia 2015-05-15 11:07:19 -03:00
parent 1e7098e626
commit a8a0023e38
1 changed files with 3 additions and 1 deletions

View File

@ -255,7 +255,9 @@ angular.module('copayApp.controllers').controller('indexController', function($r
self.updatingTxHistory = false;
if (err) {
$log.debug('TxHistory ERROR:', err);
self.handleError(err);
// We do not should errors here, since history is usually
// fetched AFTER others requests.
//self.handleError(err);
self.txHistoryError = true;
} else {
$log.debug('Wallet Transaction History:', txs);