rewrite if statement

This commit is contained in:
rootzoll 2021-08-30 21:59:14 +02:00
parent cfa97f234b
commit f0e32db2a3

View File

@ -145,8 +145,8 @@ if [ "${lightning}" == "lnd" ] || [ "${lnd}" == "on" ]; then
OPTIONS+=(LND "LND Wallet Options")
fi
# if C-Lighthing is active
if [ "${lightning}" == "cln" ] || [ "${cln}" == "on" ]; then
# if C-Lightning is active
if [ "${lightning}" == "cln" ] || [ "${cln}" == "on" ]; then
echo "GOT CLN"
OPTIONS+=(CLN "C-lightning Wallet Options")
else