Merge pull request #2394 from mempool/simon/empty-tx-value-fix

Fix for empty tx value
This commit is contained in:
wiz 2022-08-26 00:11:28 +09:00 committed by GitHub
commit dda8c7fb14
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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