From ce950d63cb4fcb9f2a5c530753f2599b4e7f0588 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 a1af41804a6a8f2a0d61b5ad6fe814c40d2fd837 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 316028fe6633da73d9e816bfb660d6dad41a9771 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 4cb379bb0ffc9e3c11578e644d567b057bad7989 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 d3532eb734182d359ff296a56dc2a3be176269ed 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 f166cb79741fb54881054f6803f6889e110438a2 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 8fe78fa12b995997cc473db3997d5e284c26a661 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 ab784cede23f9f9fbc8a4a3ac07cefbd4a5c29b6 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;