Fix for empty tx value

fixes #2263
This commit is contained in:
softsimon 2022-08-25 17:24:42 +04:00
parent 80f4c8c4b5
commit 346f602f94

View File

@ -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;
}