Skip to content

Commit 509de91

Browse files
committed
undo _.filter removal in another file
1 parent 9a253fc commit 509de91

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/bitcore-wallet-service/src/lib/model/txproposal.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ export class TxProposal {
417417
}
418418

419419
getCurrentSignatures() {
420-
const acceptedActions = this.actions.filter(a => {
420+
const acceptedActions = _.filter(this.actions, a => {
421421
return a.type == 'accept';
422422
});
423423

@@ -459,7 +459,7 @@ export class TxProposal {
459459
*/
460460
getApprovers() {
461461
return _.map(
462-
this.actions.filter(a => {
462+
_.filter(this.actions, a => {
463463
return a.type == 'accept';
464464
}),
465465
'copayerId'

0 commit comments

Comments
 (0)