ignore history server errors
This commit is contained in:
parent
1e7098e626
commit
a8a0023e38
1 changed files with 3 additions and 1 deletions
|
|
@ -255,7 +255,9 @@ angular.module('copayApp.controllers').controller('indexController', function($r
|
||||||
self.updatingTxHistory = false;
|
self.updatingTxHistory = false;
|
||||||
if (err) {
|
if (err) {
|
||||||
$log.debug('TxHistory ERROR:', 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;
|
self.txHistoryError = true;
|
||||||
} else {
|
} else {
|
||||||
$log.debug('Wallet Transaction History:', txs);
|
$log.debug('Wallet Transaction History:', txs);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue