Merge pull request #3058 from troggy/addon/format-amount

Allow addons to customize pending proposals
This commit is contained in:
Matias Alejo Garcia 2015-08-10 10:05:19 -03:00
commit 357bfd4621
2 changed files with 22 additions and 17 deletions

View file

@ -488,6 +488,7 @@ angular.module('copayApp.controllers').controller('indexController', function($r
if (tx.creatorId != self.copayerId) {
self.pendingTxProposalsCountForUs = self.pendingTxProposalsCountForUs + 1;
}
addonManager.formatPendingTxp(tx);
});
self.txps = txps;
};