From a5410178c87ef1a40d8b3477f6be8b1697b27e10 Mon Sep 17 00:00:00 2001 From: softsimon Date: Thu, 25 Aug 2022 17:24:42 +0400 Subject: [PATCH] Fix for empty tx value fixes #2263 --- .../transactions-list/transactions-list.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; }