unify strings to "payment". Add retry on balance update
This commit is contained in:
parent
876ae63a25
commit
17deda9000
8 changed files with 92 additions and 55 deletions
|
|
@ -145,7 +145,11 @@ angular.module('copayApp.controllers').controller('indexController', function($r
|
|||
$rootScope.$emit('Local/TabChanged', tab);
|
||||
};
|
||||
|
||||
self.updateAll = function(walletStatus) {
|
||||
self.updateAll = function(walletStatus, untilItChanges, initBalance, tries) {
|
||||
tries = tries || 0;
|
||||
if (untilItChanges && lodash.isUndefined(initBalance)) {
|
||||
initBalance = self.totalBalanceSat;
|
||||
}
|
||||
var get = function(cb) {
|
||||
if (walletStatus)
|
||||
return cb(null, walletStatus);
|
||||
|
|
@ -169,6 +173,11 @@ angular.module('copayApp.controllers').controller('indexController', function($r
|
|||
self.setOngoingProcess('updatingStatus', true);
|
||||
$log.debug('Updating Status:', fc);
|
||||
get(function(err, walletStatus) {
|
||||
if (!err && untilItChanges && initBalance == walletStatus.balance.totalAmount && tries < 10) {
|
||||
return $timeout(function() {
|
||||
return self.updateAll(null, true, initBalance, ++tries);
|
||||
}, 1000);
|
||||
}
|
||||
self.setOngoingProcess('updatingStatus', false);
|
||||
if (err) {
|
||||
self.handleError(err);
|
||||
|
|
@ -711,8 +720,8 @@ angular.module('copayApp.controllers').controller('indexController', function($r
|
|||
lodash.each(['NewOutgoingTx', 'NewTxProposal', 'TxProposalFinallyRejected', 'transactionProposalRemoved', 'TxProposalRemoved',
|
||||
'Local/NewTxProposal', 'Local/TxProposalAction', 'ScanFinished'
|
||||
], function(eventName) {
|
||||
$rootScope.$on(eventName, function() {
|
||||
self.updateAll();
|
||||
$rootScope.$on(eventName, function(event, untilItChanges) {
|
||||
self.updateAll(null, untilItChanges);
|
||||
$timeout(function() {
|
||||
self.updateTxHistory();
|
||||
}, 3000);
|
||||
|
|
|
|||
|
|
@ -190,7 +190,7 @@ angular.module('copayApp.controllers').controller('walletHomeController', functi
|
|||
return;
|
||||
};
|
||||
|
||||
self.setOngoingProcess(gettext('Signing transaction'));
|
||||
self.setOngoingProcess(gettext('Signing payment'));
|
||||
$scope.loading = true;
|
||||
$scope.error = null;
|
||||
$timeout(function() {
|
||||
|
|
@ -229,7 +229,7 @@ angular.module('copayApp.controllers').controller('walletHomeController', functi
|
|||
};
|
||||
|
||||
$scope.reject = function(txp) {
|
||||
self.setOngoingProcess(gettext('Rejecting transaction'));
|
||||
self.setOngoingProcess(gettext('Rejecting payment'));
|
||||
$scope.loading = true;
|
||||
$scope.error = null;
|
||||
$timeout(function() {
|
||||
|
|
@ -249,7 +249,7 @@ angular.module('copayApp.controllers').controller('walletHomeController', functi
|
|||
|
||||
|
||||
$scope.remove = function(txp) {
|
||||
self.setOngoingProcess(gettext('Deleting transaction'));
|
||||
self.setOngoingProcess(gettext('Deleting payment'));
|
||||
$scope.loading = true;
|
||||
$scope.error = null;
|
||||
$timeout(function() {
|
||||
|
|
@ -270,7 +270,7 @@ angular.module('copayApp.controllers').controller('walletHomeController', functi
|
|||
};
|
||||
|
||||
$scope.broadcast = function(txp) {
|
||||
self.setOngoingProcess(gettext('Broadcasting transaction'));
|
||||
self.setOngoingProcess(gettext('Broadcasting Payment'));
|
||||
$scope.loading = true;
|
||||
$scope.error = null;
|
||||
$timeout(function() {
|
||||
|
|
@ -313,7 +313,7 @@ angular.module('copayApp.controllers').controller('walletHomeController', functi
|
|||
self.setOngoingProcess();
|
||||
if (txp) {
|
||||
txStatus.notify(txp, function() {
|
||||
$scope.$emit('Local/TxProposalAction');
|
||||
$scope.$emit('Local/TxProposalAction', true);
|
||||
});
|
||||
} else {
|
||||
$timeout(function() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue