From 0860e16b2b1d334d8e484cb7c2fe00ed198416fb Mon Sep 17 00:00:00 2001 From: nymkappa Date: Fri, 22 Apr 2022 03:25:34 -0400 Subject: [PATCH 1/2] Ignore case on coinbase tag regexes --- backend/src/api/blocks.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/backend/src/api/blocks.ts b/backend/src/api/blocks.ts index 4402f0d37..eda4c8ab1 100644 --- a/backend/src/api/blocks.ts +++ b/backend/src/api/blocks.ts @@ -179,7 +179,8 @@ class Blocks { const regexes: string[] = JSON.parse(pools[i].regexes); for (let y = 0; y < regexes.length; ++y) { - const match = asciiScriptSig.match(regexes[y]); + const regex = new RegExp(regexes[y], 'i'); + const match = asciiScriptSig.match(regex); if (match !== null) { return pools[i]; } From a3bbd286d624474a087e15d816787ac237017e31 Mon Sep 17 00:00:00 2001 From: hunicus <93150691+hunicus@users.noreply.github.com> Date: Sun, 24 Apr 2022 23:12:35 -0400 Subject: [PATCH 2/2] Update docker faq --- frontend/src/app/components/docs/api-docs-data.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/components/docs/api-docs-data.ts b/frontend/src/app/components/docs/api-docs-data.ts index 3e7d442c7..49b020ead 100644 --- a/frontend/src/app/components/docs/api-docs-data.ts +++ b/frontend/src/app/components/docs/api-docs-data.ts @@ -4582,6 +4582,6 @@ export const faqData = [ showConditions: bitcoinNetworks, fragment: "install-mempool-with-docker", title: "Can I install Mempool using Docker?", - answer: "Yes, we publish Docker images (or you can build your own), and provide an example docker-compose template." + answer: "Yes, we publish Docker images (or you can build your own). Check out the documentation for details." } ];