Fix for empty tx value

fixes #2263
This commit is contained in:
softsimon 2022-08-25 17:24:42 +04:00
parent 1971d5d6b6
commit a5410178c8
No known key found for this signature in database
GPG Key ID: 488D7DCFB5A430D7

View File

@ -105,10 +105,10 @@ export class TransactionsListComponent implements OnInit, OnChanges {
}, 10); }, 10);
} }
this.transactions.forEach((tx, i) => { this.transactions.forEach((tx) => {
tx['@voutLimit'] = true; tx['@voutLimit'] = true;
tx['@vinLimit'] = true; tx['@vinLimit'] = true;
if (this.outspends[i]) { if (tx['addressValue'] !== undefined) {
return; return;
} }