Merge branch 'master' into nymkappa/bugfix/bisq-dump-loading

This commit is contained in:
wiz 2022-05-02 11:29:05 +09:00 committed by GitHub
commit 0aac410958
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View file

@ -181,7 +181,8 @@ class Blocks {
const regexes: string[] = JSON.parse(pools[i].regexes); const regexes: string[] = JSON.parse(pools[i].regexes);
for (let y = 0; y < regexes.length; ++y) { 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) { if (match !== null) {
return pools[i]; return pools[i];
} }

View file

@ -4582,6 +4582,6 @@ export const faqData = [
showConditions: bitcoinNetworks, showConditions: bitcoinNetworks,
fragment: "install-mempool-with-docker", fragment: "install-mempool-with-docker",
title: "Can I install Mempool using Docker?", title: "Can I install Mempool using Docker?",
answer: "Yes, we publish Docker images (or you can build your own), and provide <a href='https://github.com/mempool/mempool/tree/master/docker' target='_blank'>an example docker-compose template</a>." answer: "Yes, we publish Docker images (or you can build your own). Check out <a href='https://github.com/mempool/mempool#docker-installation' target='_blank'>the documentation</a> for details."
} }
]; ];