We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a253fc commit 509de91Copy full SHA for 509de91
packages/bitcore-wallet-service/src/lib/model/txproposal.ts
@@ -417,7 +417,7 @@ export class TxProposal {
417
}
418
419
getCurrentSignatures() {
420
- const acceptedActions = this.actions.filter(a => {
+ const acceptedActions = _.filter(this.actions, a => {
421
return a.type == 'accept';
422
});
423
@@ -459,7 +459,7 @@ export class TxProposal {
459
*/
460
getApprovers() {
461
return _.map(
462
- this.actions.filter(a => {
+ _.filter(this.actions, a => {
463
464
}),
465
'copayerId'
0 commit comments