fix pending

This commit is contained in:
Matias Alejo Garcia 2014-11-30 11:18:25 -03:00
commit 01b678457d
2 changed files with 31 additions and 5 deletions

View file

@ -8,8 +8,8 @@ angular.module('copayApp.services')
var w = $rootScope.wallet;
if (!w) return;
var res = w.getPendingTxProposals();
$rootScope.pendingTxCount = res.pendingForUs;
var ret = w.getPendingTxProposalsCount();
$rootScope.pendingTxCount = ret.pendingForUs;
};
return root;
});