diff --git a/frontend/src/app/components/transactions-list/transactions-list.component.ts b/frontend/src/app/components/transactions-list/transactions-list.component.ts index 69b65a8a4..2a317e738 100644 --- a/frontend/src/app/components/transactions-list/transactions-list.component.ts +++ b/frontend/src/app/components/transactions-list/transactions-list.component.ts @@ -105,10 +105,10 @@ export class TransactionsListComponent implements OnInit, OnChanges { }, 10); } - this.transactions.forEach((tx, i) => { + this.transactions.forEach((tx) => { tx['@voutLimit'] = true; tx['@vinLimit'] = true; - if (this.outspends[i]) { + if (tx['addressValue'] !== undefined) { return; }