Added first seen on mempool transactions.

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

View File

@@ -10,6 +10,7 @@ export class TimeSinceComponent implements OnInit, OnDestroy {
trigger = 0;
@Input() time: number;
@Input() fastRender = false;
constructor(
private ref: ChangeDetectorRef
@@ -19,7 +20,7 @@ export class TimeSinceComponent implements OnInit, OnDestroy {
this.interval = window.setInterval(() => {
this.trigger++;
this.ref.markForCheck();
}, 1000 * 60);
}, 1000 * (this.fastRender ? 1 : 60));
}
ngOnDestroy() {