#1933 mempool renames

This commit is contained in:
rootzoll
2021-01-12 02:22:29 +01:00
parent 0319465594
commit 2a02247dce
3 changed files with 9 additions and 4 deletions

View File

@@ -2,6 +2,11 @@
## Whats new in Version 1.6.2 of RaspiBlitz?
- Update: mempool space 2.0 [details](https://github.com/mempool/mempool)
- Fix: Specter Persistence
## Whats new in Version 1.6.2 of RaspiBlitz?
- New: Pool (Inbound Liquidity Marketplace) [details](https://github.com/lightninglabs/pool/blob/master/README.md)
- New: Sphinx Relay Server [details](https://github.com/stakwork/sphinx-relay/blob/master/README.md)
- Update: LNbits (Lightning Vouchers)

View File

@@ -34,7 +34,7 @@ OPTIONS+=(p 'BTCPayServer' ${BTCPayServer})
OPTIONS+=(i 'LNbits' ${LNBits})
OPTIONS+=(b 'BTC-RPC-Explorer' ${BTCRPCexplorer})
OPTIONS+=(s 'Cryptoadvance Specter' ${specter})
OPTIONS+=(a 'Mempool Explorer' ${mempoolExplorer})
OPTIONS+=(a 'Mempool Space' ${mempoolExplorer})
OPTIONS+=(j 'JoinMarket' ${joinmarket})
OPTIONS+=(l 'Lightning Loop' ${loop})
OPTIONS+=(o 'Balance of Satoshis' ${bos})

View File

@@ -478,10 +478,10 @@ else
echo "Provisioning ThunderHub - keep default" >> ${logFile}
fi
# mempool explorer
# mempool space
if [ "${mempoolExplorer}" = "on" ]; then
echo "Provisioning MempoolExplorer - run config script" >> ${logFile}
sudo sed -i "s/^message=.*/message='Setup Mempool Explorer'/g" ${infoFile}
echo "Provisioning MempoolSpace - run config script" >> ${logFile}
sudo sed -i "s/^message=.*/message='Setup Mempool Space'/g" ${infoFile}
sudo -u admin /home/admin/config.scripts/bonus.mempool.sh on >> ${logFile} 2>&1
else
echo "Provisioning Mempool Explorer - keep default" >> ${logFile}