mirror of
https://github.com/mempool/mempool.git
synced 2025-02-23 22:46:54 +01:00
Address loadmore bugfix.
This commit is contained in:
parent
dc775b7ee5
commit
15e25b447f
1 changed files with 1 additions and 0 deletions
|
@ -159,6 +159,7 @@ export class AddressComponent implements OnInit, OnDestroy {
|
|||
this.isLoadingTransactions = true;
|
||||
this.electrsApiService.getAddressTransactionsFromHash$(this.address.address, this.lastTransactionTxId)
|
||||
.subscribe((transactions: Transaction[]) => {
|
||||
this.lastTransactionTxId = transactions[transactions.length - 1].txid;
|
||||
this.loadedConfirmedTxCount += transactions.length;
|
||||
this.transactions = this.transactions.concat(transactions);
|
||||
this.isLoadingTransactions = false;
|
||||
|
|
Loading…
Add table
Reference in a new issue