-
The Mempool Open Source Project
-
Explore the full Bitcoin ecosystem
+
The Mempool Open Source Project ™
+
Explore the full Bitcoin ecosystem ™
diff --git a/frontend/src/app/shared/components/global-footer/global-footer.component.ts b/frontend/src/app/shared/components/global-footer/global-footer.component.ts
index c1a26ac68..d4f1946ea 100644
--- a/frontend/src/app/shared/components/global-footer/global-footer.component.ts
+++ b/frontend/src/app/shared/components/global-footer/global-footer.component.ts
@@ -1,4 +1,4 @@
-import { ChangeDetectionStrategy, Component, OnInit } from '@angular/core';
+import { ChangeDetectionStrategy, Component, OnInit, Inject, LOCALE_ID } from '@angular/core';
import { Observable, merge, of, Subject } from 'rxjs';
import { tap, takeUntil } from 'rxjs/operators';
import { Env, StateService } from '../../../services/state.service';
@@ -28,6 +28,7 @@ export class GlobalFooterComponent implements OnInit {
public stateService: StateService,
private languageService: LanguageService,
private navigationService: NavigationService,
+ @Inject(LOCALE_ID) public locale: string,
) {}
ngOnInit(): void {
From 0ddd9b2487d6dd94306f3d518503f57c9a187dfe Mon Sep 17 00:00:00 2001
From: hunicus <93150691+hunicus@users.noreply.github.com>
Date: Fri, 12 May 2023 15:54:35 -0400
Subject: [PATCH 2/4] Turn generic project text into trademark
---
.../components/global-footer/global-footer.component.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/frontend/src/app/shared/components/global-footer/global-footer.component.html b/frontend/src/app/shared/components/global-footer/global-footer.component.html
index cf4356987..0bac1f9ff 100644
--- a/frontend/src/app/shared/components/global-footer/global-footer.component.html
+++ b/frontend/src/app/shared/components/global-footer/global-footer.component.html
@@ -16,7 +16,7 @@
Broadcast Transaction
Connect to our Nodes
-
About the Project
+
About The Mempool Open Source Projectâ„¢
From 6a5afd7f95adb9688608c7da815cd46507d6236f Mon Sep 17 00:00:00 2001
From: Mononaut
Date: Fri, 12 May 2023 21:08:12 -0600
Subject: [PATCH 3/4] Add missing clock websocket subscriptions
---
frontend/src/app/components/clock-face/clock-face.component.ts | 1 -
frontend/src/app/components/clock/clock.component.ts | 2 +-
2 files changed, 1 insertion(+), 2 deletions(-)
diff --git a/frontend/src/app/components/clock-face/clock-face.component.ts b/frontend/src/app/components/clock-face/clock-face.component.ts
index 01e439e8e..c2c946b74 100644
--- a/frontend/src/app/components/clock-face/clock-face.component.ts
+++ b/frontend/src/app/components/clock-face/clock-face.component.ts
@@ -26,7 +26,6 @@ export class ClockFaceComponent implements OnInit, OnChanges, OnDestroy {
constructor(
public stateService: StateService,
- private websocketService: WebsocketService,
private cd: ChangeDetectorRef
) {
this.updateTime();
diff --git a/frontend/src/app/components/clock/clock.component.ts b/frontend/src/app/components/clock/clock.component.ts
index dea2de4c8..285f91ff8 100644
--- a/frontend/src/app/components/clock/clock.component.ts
+++ b/frontend/src/app/components/clock/clock.component.ts
@@ -52,7 +52,7 @@ export class ClockComponent implements OnInit {
ngOnInit(): void {
this.resizeCanvas();
- this.websocketService.want(['blocks']);
+ this.websocketService.want(['blocks', 'stats', 'mempool-blocks']);
this.blocksSubscription = this.stateService.blocks$
.subscribe(([block]) => {
From ea52d40a10d0454f569a3de7cabb5a527a30685e Mon Sep 17 00:00:00 2001
From: Mononaut
Date: Sat, 13 May 2023 09:26:21 -0600
Subject: [PATCH 4/4] Remove clock fee debugging adjustment
---
frontend/src/app/components/clock/clock.component.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/frontend/src/app/components/clock/clock.component.html b/frontend/src/app/components/clock/clock.component.html
index 914450a79..b869ef005 100644
--- a/frontend/src/app/components/clock/clock.component.html
+++ b/frontend/src/app/components/clock/clock.component.html
@@ -40,7 +40,7 @@
priority rate
-
{{ recommendedFees.fastestFee + 300 }} sat/vB
+
{{ recommendedFees.fastestFee }} sat/vB