CLN - Core Lightning rebrand in main places in menu

This commit is contained in:
openoms 2022-05-23 13:04:29 +01:00
parent 3b7dccd199
commit df4072ffd8
No known key found for this signature in database
GPG Key ID: 5BFB77609B081B65
2 changed files with 7 additions and 7 deletions

View File

@ -68,9 +68,9 @@ if [ "${lightning}" == "lnd" ] || [ "${lnd}" == "on" ]; then
OPTIONS+=(LND "LND Wallet Options") OPTIONS+=(LND "LND Wallet Options")
fi fi
# if C-Lightning is active # if Core Lightning is active
if [ "${lightning}" == "cl" ] || [ "${cl}" == "on" ]; then if [ "${lightning}" == "cl" ] || [ "${cl}" == "on" ]; then
OPTIONS+=(CL "C-lightning Wallet Options") OPTIONS+=(CLN "Core Lightning Wallet Options")
fi fi
# Activated Apps/Services # Activated Apps/Services
@ -78,7 +78,7 @@ if [ "${rtlWebinterface}" == "on" ]; then
OPTIONS+=(LRTL "LND RTL Webinterface") OPTIONS+=(LRTL "LND RTL Webinterface")
fi fi
if [ "${crtlWebinterface}" == "on" ]; then if [ "${crtlWebinterface}" == "on" ]; then
OPTIONS+=(CRTL "C-Lightning RTL Webinterface") OPTIONS+=(CRTL "Core Lightning RTL Webinterface")
fi fi
if [ "${BTCPayServer}" == "on" ]; then if [ "${BTCPayServer}" == "on" ]; then
OPTIONS+=(BTCPAY "BTCPay Server Info") OPTIONS+=(BTCPAY "BTCPay Server Info")
@ -102,7 +102,7 @@ if [ "${LNBits}" == "on" ]; then
if [ "${LNBitsFunding}" == "lnd" ] || [ "${LNBitsFunding}" == "tlnd" ] || [ "${LNBitsFunding}" == "slnd" ] || [ "${LNBitsFunding}" == "" ]; then if [ "${LNBitsFunding}" == "lnd" ] || [ "${LNBitsFunding}" == "tlnd" ] || [ "${LNBitsFunding}" == "slnd" ] || [ "${LNBitsFunding}" == "" ]; then
OPTIONS+=(LNBITS "LNbits on LND") OPTIONS+=(LNBITS "LNbits on LND")
elif [ "${LNBitsFunding}" == "cl" ] || [ "${LNBitsFunding}" == "tcl" ] || [ "${LNBitsFunding}" == "scl" ]; then elif [ "${LNBitsFunding}" == "cl" ] || [ "${LNBitsFunding}" == "tcl" ] || [ "${LNBitsFunding}" == "scl" ]; then
OPTIONS+=(LNBITS "LNbits on c-lightning") OPTIONS+=(LNBITS "LNbits on Core Lightning")
fi fi
fi fi
if [ "${lndmanage}" == "on" ]; then if [ "${lndmanage}" == "on" ]; then
@ -228,7 +228,7 @@ case $CHOICE in
LND) LND)
/home/admin/99lndMenu.sh /home/admin/99lndMenu.sh
;; ;;
CL) CLN)
/home/admin/99clMenu.sh ${chain}net /home/admin/99clMenu.sh ${chain}net
;; ;;
CONNECT) CONNECT)

View File

@ -50,7 +50,7 @@ if [ "${network}" == "bitcoin" ]; then
# choose lightning client # choose lightning client
OPTIONS=() OPTIONS=()
OPTIONS+=(LND "LND - Lightning Network Daemon (DEFAULT)") OPTIONS+=(LND "LND - Lightning Network Daemon (DEFAULT)")
OPTIONS+=(CL "C-lightning by Blockstream (NEW)") OPTIONS+=(CLN "Core Lightning by Blockstream (NEW)")
OPTIONS+=(NONE "Run without Lightning") OPTIONS+=(NONE "Run without Lightning")
CHOICE=$(dialog --clear \ CHOICE=$(dialog --clear \
--backtitle "RaspiBlitz ${codeVersion} - Setup" \ --backtitle "RaspiBlitz ${codeVersion} - Setup" \
@ -64,7 +64,7 @@ if [ "${network}" == "bitcoin" ]; then
LND) LND)
lightning="lnd" lightning="lnd"
;; ;;
CL) CLN)
lightning="cl" lightning="cl"
;; ;;
NONE) NONE)