From 15e25b447f43a2ac2f1df4e2d334c7545cfae06b Mon Sep 17 00:00:00 2001 From: softsimon Date: Sun, 1 Mar 2020 18:09:42 +0700 Subject: [PATCH] Address loadmore bugfix. --- frontend/src/app/components/address/address.component.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/app/components/address/address.component.ts b/frontend/src/app/components/address/address.component.ts index 6f6929acd..fc4a6d0cd 100644 --- a/frontend/src/app/components/address/address.component.ts +++ b/frontend/src/app/components/address/address.component.ts @@ -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;