Added first seen on mempool transactions.

This commit is contained in:
softsimon
2020-02-28 01:09:07 +07:00
parent 23a61a37fd
commit 4879036216
17 changed files with 100 additions and 34 deletions

View File

@@ -14,7 +14,6 @@ export class LatestBlocksComponent implements OnInit, OnDestroy {
blockSubscription: Subscription;
isLoading = true;
interval: any;
trigger = 0;
constructor(
private electrsApiService: ElectrsApiService,
@@ -47,7 +46,6 @@ export class LatestBlocksComponent implements OnInit, OnDestroy {
});
this.loadInitialBlocks();
this.interval = window.setInterval(() => this.trigger++, 1000 * 60);
}
ngOnDestroy() {