Confirmed address transactions fix. QR Code fix.

This commit is contained in:
softsimon
2020-02-26 21:11:43 +07:00
parent 727dae69bd
commit 4efbb7be55
4 changed files with 13 additions and 8 deletions

View File

@@ -61,6 +61,10 @@ export class AddressComponent implements OnInit, OnDestroy {
this.stateService.mempoolTransactions$
.subscribe((transaction) => {
if (this.transactions.some((t) => t.txid === transaction.txid)) {
return;
}
this.transactions.unshift(transaction);
this.transactions = this.transactions.slice();
this.txCount++;