From befec362de44c0bfe72871440932b43a2af0fed5 Mon Sep 17 00:00:00 2001
From: hunicus <93150691+hunicus@users.noreply.github.com>
Date: Mon, 12 Jun 2023 07:07:15 -0400
Subject: [PATCH 1/8] Replace disclaimer text regarding tx acceleration
---
frontend/src/app/docs/api-docs/api-docs.component.html | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/frontend/src/app/docs/api-docs/api-docs.component.html b/frontend/src/app/docs/api-docs/api-docs.component.html
index 392cda19e..b788d2739 100644
--- a/frontend/src/app/docs/api-docs/api-docs.component.html
+++ b/frontend/src/app/docs/api-docs/api-docs.component.html
@@ -10,8 +10,8 @@
-
| mempool.space merely provides data about the Bitcoin network. It cannot help you with retrieving funds, confirming your transaction quicker, etc. For any such requests, you need to get in touch with the entity that helped make the transaction (wallet software, exchange company, etc). |
-
mempool.space merely provides data about the Bitcoin network. It cannot help you with retrieving funds, confirming your transaction quicker, etc.
For any such requests, you need to get in touch with the entity that helped make the transaction (wallet software, exchange company, etc).
+
| mempool.space merely provides data about the Bitcoin network. It cannot help you with retrieving funds, wallet issues, etc. For any such requests, you need to get in touch with the entity that helped make the transaction (wallet software, exchange company, etc). |
+
mempool.space merely provides data about the Bitcoin network. It cannot help you with retrieving funds, wallet issues, etc.
For any such requests, you need to get in touch with the entity that helped make the transaction (wallet software, exchange company, etc).
From b72b87952ef1b7d054a32816a78f502c1574bba6 Mon Sep 17 00:00:00 2001
From: hunicus <93150691+hunicus@users.noreply.github.com>
Date: Tue, 1 Aug 2023 16:00:16 +0900
Subject: [PATCH 2/8] Implement wiz footer suggestions
---
.../global-footer/global-footer.component.html | 10 ++++++----
.../global-footer/global-footer.component.scss | 5 +++++
2 files changed, 11 insertions(+), 4 deletions(-)
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 b1ba84109..58b7c5b1e 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
@@ -2,7 +2,10 @@
-
The Mempool Open Source Project ®
+
Explore the full Bitcoin ecosystem ™
diff --git a/frontend/src/app/shared/components/global-footer/global-footer.component.scss b/frontend/src/app/shared/components/global-footer/global-footer.component.scss
index defbe937e..cec41f25b 100644
--- a/frontend/src/app/shared/components/global-footer/global-footer.component.scss
+++ b/frontend/src/app/shared/components/global-footer/global-footer.component.scss
@@ -89,6 +89,11 @@ footer .row.version p a {
color: #09a3ba;
}
+.main-logo {
+ max-width: 220px;
+ margin: 0 auto 20px auto;
+}
+
@media (max-width: 992px) {
footer .row.main .links.outer {
From 946e2e700d69f420f1b737616e7e316d17fff59b Mon Sep 17 00:00:00 2001
From: hunicus <93150691+hunicus@users.noreply.github.com>
Date: Tue, 1 Aug 2023 17:24:26 +0900
Subject: [PATCH 3/8] Add space below tagline
---
.../components/global-footer/global-footer.component.scss | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/frontend/src/app/shared/components/global-footer/global-footer.component.scss b/frontend/src/app/shared/components/global-footer/global-footer.component.scss
index cec41f25b..387a27ffc 100644
--- a/frontend/src/app/shared/components/global-footer/global-footer.component.scss
+++ b/frontend/src/app/shared/components/global-footer/global-footer.component.scss
@@ -21,6 +21,10 @@ footer .row.main .branding {
text-align: center;
}
+footer .row.main .branding > p {
+ margin-bottom: 45px;
+}
+
footer .row.main .branding .btn {
display: inline-block;
color: #fff !important;
From 14b386d2b2d4e02cb14d974be6c09f3926a243c2 Mon Sep 17 00:00:00 2001
From: hunicus <93150691+hunicus@users.noreply.github.com>
Date: Tue, 1 Aug 2023 17:26:13 +0900
Subject: [PATCH 4/8] Change more networks to networks
---
.../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 58b7c5b1e..e1d853848 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
@@ -52,7 +52,7 @@
-
More Networks
+
Networks
Mainnet Explorer
Testnet Explorer
Signet Explorer
From bae3682e051629e17e737670413930f7ab294a31 Mon Sep 17 00:00:00 2001
From: hunicus <93150691+hunicus@users.noreply.github.com>
Date: Tue, 1 Aug 2023 17:35:18 +0900
Subject: [PATCH 5/8] Improve show conditions for explore links
---
.../components/global-footer/global-footer.component.html | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
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 e1d853848..7206cc34f 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
@@ -26,10 +26,10 @@
From 7d4c9267c89b4d8ef47c10ae6381d116d1cfc236 Mon Sep 17 00:00:00 2001
From: hunicus <93150691+hunicus@users.noreply.github.com>
Date: Tue, 1 Aug 2023 17:36:12 +0900
Subject: [PATCH 6/8] Remove commented/inactive social links
---
.../global-footer/global-footer.component.html | 9 ---------
1 file changed, 9 deletions(-)
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 7206cc34f..a5792bb17 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
@@ -40,15 +40,6 @@
Why isn't my transaction confirming?
More FAQs ›
-
From 04430fadd192f6c6f22d462aae559e111d9efa85 Mon Sep 17 00:00:00 2001
From: hunicus <93150691+hunicus@users.noreply.github.com>
Date: Tue, 1 Aug 2023 18:08:49 +0900
Subject: [PATCH 7/8] Improve conditions for showing network links
---
.../global-footer/global-footer.component.html | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
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 a5792bb17..903ba70bd 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
@@ -42,13 +42,13 @@
-
+
Legal
From c0724e20515a5ba71bde77c7984f20764516826c Mon Sep 17 00:00:00 2001
From: Mononaut
Date: Tue, 1 Aug 2023 18:41:48 +0900
Subject: [PATCH 8/8] fix partially indexed difficulty bug
---
backend/src/api/mining/mining.ts | 1 +
1 file changed, 1 insertion(+)
diff --git a/backend/src/api/mining/mining.ts b/backend/src/api/mining/mining.ts
index 3eeb3e9e5..7376e7cf4 100644
--- a/backend/src/api/mining/mining.ts
+++ b/backend/src/api/mining/mining.ts
@@ -438,6 +438,7 @@ class Mining {
const oldestConsecutiveBlock = await BlocksRepository.$getOldestConsecutiveBlock();
if (config.MEMPOOL.INDEXING_BLOCKS_AMOUNT !== -1) {
currentBits = oldestConsecutiveBlock.bits;
+ currentDifficulty = oldestConsecutiveBlock.difficulty;
}
let totalBlockChecked = 0;