diff --git a/js/services/controllerUtils.js b/js/services/controllerUtils.js index a351db6cb..02e4179d1 100644 --- a/js/services/controllerUtils.js +++ b/js/services/controllerUtils.js @@ -349,6 +349,9 @@ angular.module('copayApp.services') var w = $rootScope.wallet; if (!w) return root.onErrorDigest(); var res = w.getPendingTxProposals(); + _.each(res.txs, function(tx) { + root.computeAlternativeAmount(w, tx); + }); $rootScope.txps = res.txs; if ($rootScope.pendingTxCount < res.pendingForUs) { $rootScope.txAlertCount = res.pendingForUs; diff --git a/views/includes/transaction.html b/views/includes/transaction.html index f4847c54b..73e72ecf8 100644 --- a/views/includes/transaction.html +++ b/views/includes/transaction.html @@ -10,7 +10,9 @@