Merge pull request #5701 from mempool/natsoni/fix-inscription-badge

Fix inscription badge disappearing when loading more inputs
This commit is contained in:
softsimon
2024-12-21 16:07:22 +07:00
committed by GitHub

View File

@@ -351,8 +351,12 @@ export class TransactionsListComponent implements OnInit, OnChanges {
this.electrsApiService.getTransaction$(tx.txid)
.subscribe((newTx) => {
tx['@vinLoaded'] = true;
let temp = tx.vin;
tx.vin = newTx.vin;
tx.fee = newTx.fee;
for (const [index, vin] of temp.entries()) {
newTx.vin[index].isInscription = vin.isInscription;
}
this.ref.markForCheck();
});
}